UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 201 B
/** * Performs synchronous-like Array.forEach() on an array of promises. */ declare const forEach: (arr: Promise<any>[], fn: Function, cb: Function, i?: number) => void; export default forEach;