UNPKG

polished

Version:

A lightweight toolset for writing styles in Javascript.

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