FLUJOS/VISUALIZACION/node_modules/polished/lib/internalHelpers/_numberToHex.js.flow
2025-11-07 00:06:12 +01:00

7 lines
162 B
Text
Executable file

// @flow
function numberToHex(value: number): string {
const hex = value.toString(16)
return hex.length === 1 ? `0${hex}` : hex
}
export default numberToHex