length (函数式编程)
创建一个返回数组长度的函数。与函数式编程的 pipe 一起使用。
typescript
const result = pipe(array, length());INFO
这个辅助函数专用于 es-toolkit/fp。当你想把这个操作作为 pipe 管道中的一步来组合时使用它。
用法
length 返回管道中数组包含的值数量。
typescript
import { length, pipe } from 'es-toolkit/fp';
pipe([1, 2, 3], length()); // => 3参数
此函数不接收参数;请以 length() 的形式调用。
返回值
((array: readonly T[]) => number): 一个将 readonly T[] 映射为其长度的函数。

