UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

9 lines (8 loc) 152 B
//#region src/fp/array/find.ts function find(predicate) { return function(array) { return array.find(predicate); }; } //#endregion export { find };