MCPcopy
hub / github.com/TargetProcess/tauCharts / fileRange

Function fileRange

examples/index.js:594–601  ·  view source on GitHub ↗
(prefix, numbers)

Source from the content-addressed store, hash-verified

592 }
593
594 function fileRange(prefix, numbers) {
595 numbers = Array.prototype.slice.call(arguments, 1);
596 return utils.flatten(numbers).map(function (num) {
597 num = '00' + String(num);
598 num = num.substring(num.length - 3);
599 return prefix + num;
600 });
601 }
602
603 function range(start, end) {
604 var arr = [];

Callers 1

index.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected