traverse-chain

A simple asynchronous tool

Usage no npm install needed!

<script type="module">
  import traverseChain from 'https://cdn.skypack.dev/traverse-chain';
</script>

README

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