first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
8
node_modules/date-fns/esm/_lib/addLeadingZeros/index.js
generated
vendored
Normal file
8
node_modules/date-fns/esm/_lib/addLeadingZeros/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export default function addLeadingZeros(number, targetLength) {
|
||||
var sign = number < 0 ? '-' : '';
|
||||
var output = Math.abs(number).toString();
|
||||
while (output.length < targetLength) {
|
||||
output = '0' + output;
|
||||
}
|
||||
return sign + output;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue