0
1
GGGiovanny Gongora
Pads a given number to the specified length.
0 Comments
const padNumber = (n: number, l: number) => `${n}`.padStart(l, '0');