source: frontend/node_modules/underscore/modules/times.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 285 bytes
Line 
1import optimizeCb from './_optimizeCb.js';
2
3// Run a function **n** times.
4export default function times(n, iteratee, context) {
5 var accum = Array(Math.max(0, n));
6 iteratee = optimizeCb(iteratee, context, 1);
7 for (var i = 0; i < n; i++) accum[i] = iteratee(i);
8 return accum;
9}
Note: See TracBrowser for help on using the repository browser.