MCPcopy Index your code
hub / github.com/RandomAPI/Randomuser.me-Node / pad

Function pad

util.js:14–18  ·  view source on GitHub ↗
(n, width, z)

Source from the content-addressed store, hash-verified

12}
13
14function pad(n, width, z) {
15 z = z || '0';
16 n = n + '';
17 return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
18}
19
20module.exports = {
21 getDateTime,

Callers 7

getDateTimeFunction · 0.85
inject.jsFile · 0.85
genSVNRFunction · 0.85
getPersonIdFunction · 0.85
getPersonIdFunction · 0.85
inject.jsFile · 0.85
getPersonIdFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected