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

8 lines
199 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import { isMotionValue } from '../utils/is-motion-value.mjs';
function isWillChangeMotionValue(value) {
return Boolean(isMotionValue(value) && value.add);
}
export { isWillChangeMotionValue };