Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
8
VApp/node_modules/date-fns/esm/_lib/addLeadingZeros/index.js
generated
vendored
Normal file
8
VApp/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;
|
||||
}
|
Reference in New Issue
Block a user