es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
18 lines (14 loc) • 398 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function takeWhile(arr, shouldContinueTaking) {
const result = [];
for (let i = 0; i < arr.length; i++) {
const item = arr[i];
if (!shouldContinueTaking(item, i, arr)) {
break;
}
result.push(item);
}
return result;
}
exports.takeWhile = takeWhile;