glance-dom
Version:
Glance DOM library
12 lines (10 loc) • 507 B
JavaScript
;
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);
};