mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 10:45:08 +03:00
e9ede74362
* Translate Simplified Chinese * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Update docs/.vitepress/shared.mts --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
744 B
744 B
takeWhile
返回一个新数组,其中包含满足提供的谓词函数的前导元素。
一旦有一个元素不满足谓词,就停止获取元素。
签名
function takeWhile<T>(arr: T[], shouldContinueTaking: (element: T) => boolean): T[];
参数
arr
(T[]
): 要获取元素的数组。shouldContinueTaking
((item: T) => boolean
): 谓词函数,对每个元素调用该函数。只要该函数返回true
,就将元素包含在结果中。
返回值
(T[]
) 包含从数组开头获取的元素,直到谓词函数返回 false
的新数组。
示例
// 返回 [1, 2]
takeWhile([1, 2, 3, 4], x => x < 3);
// 返回 []
takeWhile([1, 2, 3, 4], x => x > 3);