kotaindah55_extended-markdo.../src/utils/decToHex.ts

3 lines
No EOL
112 B
TypeScript

export function decToHex(value: number, minDigit = 2) {
return value.toString(16).padStart(minDigit, "0");
}