nested-promise
v0.0.5
Published
Promise pattern for async tasks. Also handles nested tasks
Downloads
3
Maintainers
Readme
nested-promise
Stability - 2 Unstable
Promise pattern to handle multiple nested tasks
Usage
var TaskHandler = promise.TaskHandler;
var options = {
task: tasks,
asyncop: asyncop,
cbtaskcomplete: taskcomplete,
cbend: end
};
var th = new TaskHandler();
th.init(options);