????
| Current Path : /proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Library/util/ |
| Current File : //proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Library/util/dom.js |
export const hasCSSVar = (varName, cssRules = []) => {
return Array.from(cssRules).some((rule) => {
if (!rule.style) return false;
return Array.from(rule.style).some((style) => style?.includes(varName));
});
};