ran npm run tdd
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
module.exports = chainAsync = fns => {
|
||||
const chainAsync = fns => {
|
||||
let curr = 0;
|
||||
const next = () => fns[curr++](next);
|
||||
next();
|
||||
};
|
||||
};
|
||||
module.exports = chainAsync
|
||||
Reference in New Issue
Block a user