squad
v3.0.0
Published
right-to-left function composition
Downloads
4,859
Maintainers
Readme
squad

Right-to-left function composition. The rightmost function may have any arity. The remaining functions must be unary.
Install
npm i squad
How 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