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) {
|
||||
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) {
|
||||
|
|
Reference in a new issue