mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-30 21:58:32 +00:00 
			
		
		
		
	traverse-chain
A simple asynchronous tool
Installation
$ npm install traverse-chain
Example
var Chain = require('traverse-chain');
var chain = new Chain();
chain.add(
  function() {
    setTimeout(function() {
      chain.next();
    }, 2000);
  },
  functin() {
    setTimeout(function() {
      chain.next();
    }, 1000); 
  }
)
chain.traverse(function() {
  // done
});
License
MIT
