Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 542 Bytes

File metadata and controls

26 lines (22 loc) · 542 Bytes

sync-loop

Run a sync loop with async functions

How to use

Install

npm install sync-loop

Import and use

var syncLoop = require('sync-loop');
var numberOfLoop = 10;
syncLoop(numberOfLoop, function (loop) {
  // loop body
  var index = loop.iteration(); // index of loop, value from 0 to (numberOfLoop - 1)
  doAsyncJob(function(){
    // This is callback of your function
    loop.next(); // call `loop.next()` for next iteration
  })
}, function () {
  console.log("This is finish function")
});