UNPKG

rubico

Version:

[a]synchronous functional programming

13 lines (11 loc) 220 B
/** * @name promiseAll * * @synopsis * promiseAll(Iterable<Promise|any>) -> Promise<Array> * * @description * Dereferenced Promise.all */ const promiseAll = Promise.all.bind(Promise) module.exports = promiseAll