Initial commit: Book management system with Rust Loco backend and Vue 3 frontend
This commit is contained in:
+8
@@ -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