UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

7 lines 270 B
/** * 将 `rgb(r g b)` 中的 r/g/b 值转换成整数,考虑到百分比的场景 */ export default function parseNumberRgbValue(value, percentageUnit) { return Number(value) * (percentageUnit ? 255 / 100 : 1); } //# sourceMappingURL=parse-number-rgb-value.js.map