squad

3.0.0 • Public • Published

squad License NPM version Dependency Status Build Status

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

Package Sidebar

Install

npm i squad

Weekly Downloads

292

Version

3.0.0

License

MIT

Unpacked Size

6.45 kB

Total Files

7

Last publish

Collaborators

  • coderaiser