window-is-top-matches.js 180 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 // @deprecated function windowIsTopMatches(node) { return ( node.ownerDocument.defaultView.self === node.ownerDocument.defaultView.top ); } export default windowIsTopMatches;