Files
Shifted/node_modules/polished/lib/internalHelpers/_numberToHex.js.flow
2026-02-10 01:14:19 +00:00

8 lines
162 B
Plaintext

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