First Commit

This commit is contained in:
2024-07-15 15:57:41 +03:00
commit 2f7b948cda
2137 changed files with 402438 additions and 0 deletions

28
node_modules/culori/src/lab/parseLab.js generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import { Tok } from '../parse.js';
function parseLab(color, parsed) {
if (!parsed || parsed[0] !== 'lab') {
return undefined;
}
const res = { mode: 'lab' };
const [, l, a, b, alpha] = parsed;
if (l.type === Tok.Hue || a.type === Tok.Hue || b.type === Tok.Hue) {
return undefined;
}
if (l.type !== Tok.None) {
res.l = l.value;
}
if (a.type !== Tok.None) {
res.a = a.type === Tok.Number ? a.value : (a.value * 125) / 100;
}
if (b.type !== Tok.None) {
res.b = b.type === Tok.Number ? b.value : (b.value * 125) / 100;
}
if (alpha.type !== Tok.None) {
res.alpha = alpha.type === Tok.Number ? alpha.value : alpha.value / 100;
}
return res;
}
export default parseLab;