- Add serve.py to resolve clean Quartz URLs to .html files - Regenerate Quartz site with correct baseUrl http://100.118.5.51:9120 - 196 HTML files emitted; all internal links now resolve
14 lines
315 B
JavaScript
14 lines
315 B
JavaScript
define(['./_optimizeCb'], function (_optimizeCb) {
|
|
|
|
// Run a function **n** times.
|
|
function times(n, iteratee, context) {
|
|
var accum = Array(Math.max(0, n));
|
|
iteratee = _optimizeCb(iteratee, context, 1);
|
|
for (var i = 0; i < n; i++) accum[i] = iteratee(i);
|
|
return accum;
|
|
}
|
|
|
|
return times;
|
|
|
|
});
|