egirlskey/packages/frontend/src/scripts/contains.ts

15 lines
347 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export default (parent, child, checkSame = true) => {
if (checkSame && parent === child) return true;
2017-02-20 11:13:42 +00:00
let node = child.parentNode;
while (node) {
if (node === parent) return true;
2017-02-20 11:13:42 +00:00
node = node.parentNode;
}
return false;
2017-03-18 11:05:11 +00:00
};