UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

10 lines 249 B
/** * Parse number value alpha. * * - 0.xy → xy * - xy% → xy */ export default function parseNumberAlpha(value, unit) { return !value ? undefined : Number(value) * (unit === '%' ? 1 : 100); } //# sourceMappingURL=parse-number-alpha.js.map