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

12 lines
253 B
JavaScript

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