Give function better name

This commit is contained in:
RMidhunSuresh 2022-03-25 16:08:15 +05:30
parent 0a186dd11b
commit b7a47ae901
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ let counter;
let urlVariables;
const idToPrepend = "icon-url";
function extractUrl(decl) {
function findAndReplaceUrl(decl) {
const value = decl.value;
const parsed = valueParser(value);
parsed.walk(node => {
@ -60,7 +60,7 @@ module.exports = (opts = {}) => {
postcssPlugin: "postcss-url-to-variable",
Once(root, { Rule, Declaration }) {
root.walkDecls(decl => extractUrl(decl));
root.walkDecls(decl => findAndReplaceUrl(decl));
addResolvedVariablesToRootSelector(root, { Rule, Declaration });
},
};