remix-syntax/app/utils/pad.ts

3 lines
87 B
TypeScript
Raw Permalink Normal View History

2022-01-20 06:30:48 +00:00
export function padNumber(number: number) {
return String(number).padStart(3, "0");
}