mirror of
https://github.com/hotomoe/hotomoe
synced 2024-12-18 08:38:11 +09:00
9 lines
170 B
JavaScript
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;
|
|
}
|