mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 22:26:43 -06: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;
|
||
|
}
|