HOME


Mini Shell 1.0
DIR: /home/dhnidqcz/jamesakinola.com/wp-content/plugins/extendify/src/Library/util/
Upload File :
Current File : //home/dhnidqcz/jamesakinola.com/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 && style.includes(varName),
		);
	});
};