mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +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