(n, iteratee, context)
| 813 | |
| 814 | // Run a function **n** times. |
| 815 | function times(n, iteratee, context) { |
| 816 | var accum = Array(Math.max(0, n)); |
| 817 | iteratee = optimizeCb(iteratee, context, 1); |
| 818 | for (var i = 0; i < n; i++) accum[i] = iteratee(i); |
| 819 | return accum; |
| 820 | } |
| 821 | |
| 822 | // Return a random integer between `min` and `max` (inclusive). |
| 823 | function random(min, max) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…