3 var ElementPrototype = Element.prototype;
5 ElementPrototype.matches ||
6 ElementPrototype.webkitMatchesSelector ||
7 ElementPrototype.mozMatchesSelector ||
8 ElementPrototype.msMatchesSelector;
10 module.exports = function(element, selector) {
11 return fn.call(element, selector);