UNPKG

mout

Version:

Modular Utilities

15 lines (14 loc) 306 B
"use strict"; exports.__esModule = true; /** * Iterates over a callback a set amount of times */ function times(n, callback, thisObj) { var i = -1; while (++i < n) { if (callback.call(thisObj, i) === false) { break; } } } exports["default"] = times;