Current path: home/webdevt/www/wdp/wp-content/plugins/extendify/src/Library/util/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/extendify/src/Library
export const hasCSSVar = (varName, cssRules = []) => {
return Array.from(cssRules).some((rule) => {
if (!rule.style) return false;
return Array.from(rule.style).some(
(style) => style && style.includes(varName),
);
});
};