UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 178 B
/** * Iterates over a callback a set amount of times * returning the results */ declare function take(n: any, callback: any, thisObj?: any): any[]; export default take;