1.0.0 • Published 9 years ago

for-limit v1.0.0

Weekly downloads
2
License
Apache 2.0
Repository
github
Last release
9 years ago

note

Currently the loop is inclusive. That means if you pass 1, 100 it will include both 1 and 100 in the iterator call.

example usage

var forLimit = require('for-limit');

function doSomething(i, next) {
  setTimeout(function() { 
  	console.log('something:', i); 
  	next(); }, 
  Math.random() * 1000); // simulate variable time asynchronous function
}

function allDone(err) {
  console.log('all done');
}

forLimit(1, 100, 10, doSomething, allDone);
1.0.0

9 years ago