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

13 lines
297 B
JavaScript
Raw Normal View History

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