UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

10 lines 232 B
/** * `#RGBA` 中的 R/G/B 转成整数 */ export default function parseNumberHex(str) { if (!str) { return 0; } return parseInt(str.length === 1 ? str.repeat(2) : str, 16); } //# sourceMappingURL=parse-number-hex.js.map