unis_crm/frontend/node_modules/motion-dom/dist/es/utils/is-svg-svg-element.mjs

13 lines
358 B
JavaScript
Raw Normal View History

2026-03-19 06:27:20 +00:00
import { isSVGElement } from './is-svg-element.mjs';
/**
* Checks if an element is specifically an SVGSVGElement (the root SVG element)
* in a way that works across iframes
*/
function isSVGSVGElement(element) {
return isSVGElement(element) && element.tagName === "svg";
}
export { isSVGSVGElement };
//# sourceMappingURL=is-svg-svg-element.mjs.map