UNPKG

iteragain

Version:

Javascript Iterable/Iterator/Generator-function utilities.

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