Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

13 lines
306 B
JavaScript

import { motionComponentSymbol } from './symbol.mjs';
/**
* Checks if a component is a `motion` component.
*/
function isMotionComponent(component) {
return (component !== null &&
typeof component === "object" &&
motionComponentSymbol in component);
}
export { isMotionComponent };