UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

13 lines (10 loc) 335 B
import { isMotionValue } from './is-motion-value.mjs'; /** * If the provided value is a MotionValue, this returns the actual value, otherwise just the value itself * * TODO: Remove and move to library */ function resolveMotionValue(value) { return isMotionValue(value) ? value.get() : value; } export { resolveMotionValue };