32 lines
923 B
Markdown
32 lines
923 B
Markdown
---
|
|
title: Pipe async functions
|
|
tags: function,promise
|
|
expertise: intermediate
|
|
cover: blog_images/new-york-skyline.jpg
|
|
firstSeen: 2018-01-27T18:17:44+02:00
|
|
lastUpdated: 2020-10-22T20:24:04+03:00
|
|
---
|
|
|
|
Performs left-to-right function composition for asynchronous functions.
|
|
|
|
- Use `Array.prototype.reduce()` and the spread operator (`...`) to perform function composition using `Promise.prototype.then()`.
|
|
- The functions can return a combination of normal values, `Promise`s or be `async`, returning through `await`.
|
|
- All functions must accept a single argument.
|
|
|
|
```js
|
|
const pipeAsyncFunctions = (...fns) =>
|
|
arg => fns.reduce((p, f) => p.then(f), Promise.resolve(arg));
|
|
```
|
|
|
|
```js
|
|
const sum = pipeAsyncFunctions(
|
|
x => x + 1,
|
|
x => new Promise(resolve => setTimeout(() => resolve(x + 2), 1000)),
|
|
x => x + 3,
|
|
async x => (await x) + 4
|
|
);
|
|
(async() => {
|
|
console.log(await sum(5)); // 15 (after one second)
|
|
})();
|
|
```
|