8889841chome/clixcotz/mars.clix.co.tz/node_modules/collect.js/src/methods/times.js000066600000000253150536255310022726 0ustar00'use strict'; module.exports = function times(n, fn) { for (let iterator = 1; iterator <= n; iterator += 1) { this.items.push(fn(iterator)); } return this; };