MCPcopy Create free account
hub / github.com/breck7/scroll / pad

Function pad

external/.d3.js:16376–16381  ·  view source on GitHub ↗
(value, fill, width)

Source from the content-addressed store, hash-verified

16374 requoteRe = /[\\^$*+?|[\]().{}]/g;
16375
16376function pad(value, fill, width) {
16377 var sign = value < 0 ? "-" : "",
16378 string = (sign ? -value : value) + "",
16379 length = string.length;
16380 return sign + (length < width ? new Array(width - length + 1).join(fill) + string : string);
16381}
16382
16383function requote(s) {
16384 return s.replace(requoteRe, "\\$&");

Callers 15

formatDayOfMonthFunction · 0.85
formatHour24Function · 0.85
formatHour12Function · 0.85
formatDayOfYearFunction · 0.85
formatMillisecondsFunction · 0.85
formatMonthNumberFunction · 0.85
formatMinutesFunction · 0.85
formatSecondsFunction · 0.85
formatWeekNumberSundayFunction · 0.85
formatWeekNumberISOFunction · 0.85
formatWeekNumberMondayFunction · 0.85
formatYearFunction · 0.85

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected