Remove redundant comment

This commit is contained in:
RMidhunSuresh 2022-03-10 17:51:25 +05:30
parent 2c068cc3ce
commit 4020ade70c
1 changed files with 1 additions and 1 deletions

View File

@ -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) {