git-subtree-dir: SiriusPress/wordpress
git-subtree-mainline: 6d2204413f383520b3f2ece120bc7324f2e88906
git-subtree-split: 1f173de885
34 lines
643 B
JavaScript
34 lines
643 B
JavaScript
|
|
// Node.prototype.contains
|
|
(function() {
|
|
|
|
function contains(node) {
|
|
if (!(0 in arguments)) {
|
|
throw new TypeError('1 argument is required');
|
|
}
|
|
|
|
do {
|
|
if (this === node) {
|
|
return true;
|
|
}
|
|
// eslint-disable-next-line no-cond-assign
|
|
} while (node = node && node.parentNode);
|
|
|
|
return false;
|
|
}
|
|
|
|
// IE
|
|
if ('HTMLElement' in self && 'contains' in HTMLElement.prototype) {
|
|
try {
|
|
delete HTMLElement.prototype.contains;
|
|
// eslint-disable-next-line no-empty
|
|
} catch (e) {}
|
|
}
|
|
|
|
if ('Node' in self) {
|
|
Node.prototype.contains = contains;
|
|
} else {
|
|
document.contains = Element.prototype.contains = contains;
|
|
}
|
|
|
|
}());
|