Travis build: 711

This commit is contained in:
30secondsofcode
2018-10-31 16:51:58 +00:00
parent d998d1a7f9
commit 0e58603310
10 changed files with 39 additions and 40 deletions

View File

@ -17,7 +17,7 @@ const sum = pipeAsyncFunctions(
x => x + 3,
async x => (await x) + 4
);
(async () => {
(async() => {
console.log(await sum(5)); // 15 (after one second)
})();
```