????

Your IP : 216.73.217.111


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