JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 742
  • Score
    100M100P100Q99995F
  • License MIT

Right-to-left conditional function composition. Get some result of filter functions calls.

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 License NPM version Dependency Status Build Status Coverage Status

Right-to-left conditional function composition. Get some result of filter functions call.

Install

npm i somefilter --save
bower i somefilter --save

How 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