0.0.1 • Published 7 years ago

flowleft v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

flowleft

Function composition from left to right.

NPM

Install

npm install flowleft
bower install flowleft

Usage

var flowLeft = require('flowleft');

function square(n) {
  return n * n;
}

function add(/* args */) {
  var result = 0, i = arguments.length;
  while(i--) result += arguments[i];
  return result;
}

var addSquare = flowLeft(add, square);

console.log(addSquare(1, 2)); // 9
console.log(addSquare(1, 2, 3)); // 36
console.log((addSquare(2)); // 4

Test

npm test

License

MIT