Files
tryno10/app/code/node_modules/collect.js/dist/methods/times.js
T
2022-04-07 18:09:31 +05:30

9 lines
170 B
JavaScript

'use strict';
module.exports = function times(n, fn) {
for (var iterator = 1; iterator <= n; iterator += 1) {
this.items.push(fn(iterator));
}
return this;
};