Package Exports
- somefilter
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (somefilter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
somefilter

Right-to-left conditional function composition. Get some result of filter functions call.
Install
npm i somefilter --save
bower i somefilter --saveHow to use?
let somefilter = require('somefilter');
let notEmpty = array => array.length;
let find = (array, condition) => array.filter(condition);
let findZero = array => find(array, a => !a);
let findPositive= array => find(array, a => a > 0);
let findNumbers = somefilter(notEmpty, [findPositive, findZero]);
findNumbers([1, 2, -1, -3]);
// returns
[1, 2];
findNumbers([1, 2, -1, -3, 0, 0, 0]);
// returns
[0, 0, 0];License
MIT