UNPKG

promise-any-polyfill

Version:

A polyfill for the `Promise.any` function.

7 lines (6 loc) 137 B
export {}; declare global { interface PromiseConstructor { any<T>(values: Iterable<T | PromiseLike<T>>): Promise<T>; } }