heartbeat-monitor/node_modules/motion-dom/dist/es/value/utils/resolve-motion-value.mjs

12 lines
346 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 };
//# sourceMappingURL=resolve-motion-value.mjs.map