8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
|
|
// src/scripts/isDescendant.ts
|
||
|
|
function isDescandent(context, element) {
|
||
|
|
return context.contains(element);
|
||
|
|
}
|
||
|
|
export {
|
||
|
|
isDescandent as default
|
||
|
|
};
|