UNPKG

glance-dom

Version:
12 lines (10 loc) 507 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var matches = function matches() { return document.documentElement.matches || document.documentElement.matchesSelector || document.documentElement.oMatchesSelector || document.documentElement.msMatchesSelector || document.documentElement.mozMatchesSelector || document.documentElement.webkitMatchesSelector; }; exports.default = function (selector, containerElement) { return matches().call(containerElement, selector); };