fj-some
v2.0.0
Published
functional `some` for an array.
Readme
fj-some
functional
somefor an array.
Installation
npm install fj-some --save
Usage
var some = require('fj-some');
some(elem => elem > 10,[2, 5, 8, 1, 4]); // False.
##API
cb -> arrayA curried function that expects:
cb[required] : A callback function that receives:currentValue,indexandarray.array[required]: The array on which the function is applied.
