html-namespace-matches.js 200 Bytes
import svgNamespaceMatches from './svg-namespace-matches';

function htmlNamespaceMatches(node, virtualNode) {
	return !svgNamespaceMatches(node, virtualNode);
}

export default htmlNamespaceMatches;