1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-18 08:38:11 +09:00
hotomoe/src/web/app/common/scripts/contains.js
2017-02-20 20:13:42 +09:00

9 lines
170 B
JavaScript

module.exports = function(parent, child) {
let node = child.parentNode;
while (node) {
if (node == parent) return true;
node = node.parentNode;
}
return false;
}