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 --saveHow to use?
const somefilter = require('somefilter');
const notEmpty = ({length} = 0) => length;
const find = (array, condition) => array.filter(condition);
const findZero = array => find(array, a => !a);
const findPositive = array => find(array, a => a > 0);
const 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