forked from mystiq/hydrogen-web
Remove redundant comment
This commit is contained in:
parent
2c068cc3ce
commit
4020ade70c
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ let resolvedMap;
|
||||||
|
|
||||||
function getValueFromAlias(alias, variables) {
|
function getValueFromAlias(alias, variables) {
|
||||||
const derivedVariable = aliasMap.get(`--${alias}`);
|
const derivedVariable = aliasMap.get(`--${alias}`);
|
||||||
return variables[derivedVariable] ?? resolvedMap.get(`--${derivedVariable}`); // what if we haven't resolved this variable yet?
|
return variables[derivedVariable] ?? resolvedMap.get(`--${derivedVariable}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseDeclarationValue(value) {
|
function parseDeclarationValue(value) {
|
||||||
|
|
Loading…
Reference in a new issue