Sha256: 7a225be48f783934fdb5fddf3d6f8cb75035ce7bfcfffecda9d9c7539e69f761
Contents?: true
Size: 484 Bytes
Versions: 62
Compression:
Stored size: 484 Bytes
Contents
define(function () { /** * Iterates over a callback a set amount of times * returning the results */ function take(n, callback, thisObj){ var i = -1; var arr = []; if( !thisObj ){ while(++i < n){ arr[i] = callback(i, n); } } else { while(++i < n){ arr[i] = callback.call(thisObj, i, n); } } return arr; } return take; });
Version data entries
62 entries across 62 versions & 1 rubygems