fabric
Version:
Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.
18 lines (15 loc) • 527 B
JavaScript
import { selectorMatches } from './selectorMatches.mjs';
function doesSomeParentMatch(element, selectors) {
let selector,
parentMatching = true;
while (element.parentElement && element.parentElement.nodeType === 1 && selectors.length) {
if (parentMatching) {
selector = selectors.pop();
}
element = element.parentElement;
parentMatching = selectorMatches(element, selector);
}
return selectors.length === 0;
}
export { doesSomeParentMatch };
//# sourceMappingURL=doesSomeParentMatch.mjs.map