Travis build: 903 [cron]

This commit is contained in:
30secondsofcode
2018-12-13 14:33:05 +00:00
parent dbc56ed9f4
commit 0ac9920308
9 changed files with 2030 additions and 2011 deletions

View File

@ -208,7 +208,11 @@
"body": [
"const chainAsync = fns => {",
" let curr = 0;",
" const next = () => fns[curr++](next);",
" const last = fns[fns.length - 1];",
" const next = () => {",
" const fn = fns[curr++];",
" fn === last ? fn() : fn(next);",
" };",
" next();",
"};"
],