MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / pad

Function pad

host/time/src/main/fmt.js:8–8  ·  view source on GitHub ↗
(n, w = 2)

Source from the content-addressed store, hash-verified

6const MONTHS_ABBR = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
7
8const pad = (n, w = 2) => String(n).padStart(w, "0");
9// CPython tm_wday is Mon=0..Sun=6; JS getDay is Sun=0. Convert both ways.
10const cpyWday = (d) => (d + 6) % 7;
11const jsDay = (cpy) => (cpy + 1) % 7;

Callers 2

fmtTupleFunction · 0.85
ascFormFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected