mirror of
https://github.com/BradNut/remix-syntax
synced 2025-09-08 17:40:28 +00:00
3 lines
No EOL
87 B
TypeScript
3 lines
No EOL
87 B
TypeScript
export function padNumber(number: number) {
|
|
return String(number).padStart(3, "0");
|
|
} |