dashboard/frontend/node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.mjs
2025-12-16 08:16:27 +09:00

7 lines
168 B
JavaScript

function isAnimationControls(v) {
return (v !== null &&
typeof v === "object" &&
typeof v.start === "function");
}
export { isAnimationControls };