Travis build: 1209

This commit is contained in:
30secondsofcode
2019-06-05 07:47:17 +00:00
parent 2733b07307
commit 8fb04bf37b
20 changed files with 41 additions and 41 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)
})();
```