UNPKG

iteragain

Version:

Javascript Iterable/Iterator/Generator-function utilities.

7 lines 224 B
import toArray from './toArray'; /** Calls `Promise.all` on all collected values. */ export function promiseAll(arg) { return Promise.all(toArray(arg)); } export default promiseAll; //# sourceMappingURL=promiseAll.js.map