UNPKG

chayns-components

Version:

A set of beautiful React components for developing chayns® applications.

12 lines (11 loc) 245 B
export default function isDescendant(parent, child) { let node = child.parentNode; while (node) { if (node === parent) { return true; } node = node.parentNode; } return false; } //# sourceMappingURL=isDescendant.js.map