Travis build: 961

This commit is contained in:
30secondsofcode
2019-01-16 21:43:21 +00:00
parent a4fe4a3846
commit 2313ee266a
10 changed files with 23 additions and 29 deletions

View File

@ -11,7 +11,6 @@ const pipeAsyncFunctions = (...fns) => arg => fns.reduce((p, f) => p.then(f), Pr
```
```js
const sum = pipeAsyncFunctions(
x => x + 1,
x => new Promise(resolve => setTimeout(() => resolve(x + 2), 1000)),