not-html-matches.js 114 Bytes Raw Blame History Permalink 1 2 3 4 5 function notHtmlMatches(node) { return node.nodeName.toLowerCase() !== 'html'; } export default notHtmlMatches;