dashboard/frontend/node_modules/framer-motion/dist/es/value/use-will-change/is.mjs

8 lines
181 B
JavaScript
Raw Normal View History

2025-12-16 08:16:27 +09:00
import { isMotionValue } from 'motion-dom';
function isWillChangeMotionValue(value) {
return Boolean(isMotionValue(value) && value.add);
}
export { isWillChangeMotionValue };