Sha256: 5a2a4234eae37cfc585b39f8293012b283f809b1d6d4685e366e6f8343b223a1
Contents?: true
Size: 314 Bytes
Versions: 69
Compression:
Stored size: 314 Bytes
Contents
define(function () { /** * 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; } } } return times; });
Version data entries
69 entries across 69 versions & 2 rubygems