????

Your IP : 216.73.217.70


Current Path : /home/arabianr/public_html/wp-content/plugins/extendify/src/Library/util/
Upload File :
Current File : /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));
	});
};