psjoin
v2.0.1
Published
```js // npm install psjoin // const join = require('psjoin') import join from 'https://esm.sh/[email protected]' const a = Promise.resolve(1) const b = Promise.resolve(2) const c = Promise.resolve(4) join(a, b, c, (a, b, c) => console.log(a + b + c)) // 7 ```
Downloads
19
Readme
Promise join
// npm install psjoin
// const join = require('psjoin')
import join from 'https://esm.sh/[email protected]'
const a = Promise.resolve(1)
const b = Promise.resolve(2)
const c = Promise.resolve(4)
join(a, b, c, (a, b, c) => console.log(a + b + c))
// 7