Files
echo-nexus/node_modules/motion-dom/dist/es/value/utils/resolve-motion-value.mjs
T

11 lines
296 B
JavaScript

import { isMotionValue } from './is-motion-value.mjs';
/**
* If the provided value is a MotionValue, this returns the actual value, otherwise just the value itself
*/
function resolveMotionValue(value) {
return isMotionValue(value) ? value.get() : value;
}
export { resolveMotionValue };