3.0.0 • Published 7 years ago
squad v3.0.0
squad

Right-to-left function composition. The rightmost function may have any arity. The remaining functions must be unary.
Install
npm i squadHow to use?
const squad = require('squad');
const buzz = (str) => str + '... zzz...';
const scream = (str) => str.toUpperCase();
const noise = squad(buzz, scream);
noise('hello');
// returns
'HELLO... zzz....'Environments
In old node.js environments that supports es5 only, squad could be used with:
var squad = require('squad/legacy');License
MIT