Travis build: 1378

This commit is contained in:
30secondsofcode
2019-08-19 15:16:02 +00:00
parent ebbb22db7c
commit 1b8782644c
12 changed files with 75 additions and 74 deletions

View File

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