0.0.1 • Published 9 years ago

iterate-until v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

iterate-until

Iteratively invokes a function until condition is met.

Install

npm install iterate-until
bower install iterate-until

Usage

var iterateUntil = require('iterate-until');

function addTwo(i) {
  return i + 2;
}

function isLessThanEight(n) {
  return n < 8;
}

var initial = 0;

var result = iterateUntil(isLessThanEight, addTwo, initial);

console.log(result); // [2,4,6]

License

MIT

0.0.1

9 years ago