Files
Webklar.com/node_modules/motion-dom/dist/es/utils/is-svg-svg-element.mjs
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

12 lines
310 B
JavaScript

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 };