Current section

Files

Jump to
udia assets node_modules mout function times.js
Raw

assets/node_modules/mout/function/times.js

/**
* 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;
}
}
}
module.exports = times;