Files
SerpentRace/node_modules/framer-motion/dist/es/value/use-will-change/is.mjs
T
2025-08-23 00:05:18 +02:00

8 lines
181 B
JavaScript

import { isMotionValue } from 'motion-dom';
function isWillChangeMotionValue(value) {
return Boolean(isMotionValue(value) && value.add);
}
export { isWillChangeMotionValue };