//#region src/fp/array/find.ts function find(predicate) { return function(array) { return array.find(predicate); }; } //#endregion export { find };