UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 179 B
/** * Throttles the input promise for a given amount of miliseconds */ declare const throttle: (ms: number, promise: Promise<any>) => Promise<{}>; export default throttle;