import { MotionValue } from "@motionone/types"; const data = new WeakMap(); export function getAnimationData(element) { if (!data.has(element)) { data.set(element, { transforms: [], values: new Map(), }); } return data.get(element); } export function getMotionValue(motionValues, name) { if (!motionValues.has(name)) { motionValues.set(name, new MotionValue()); } return motionValues.get(name); } //# sourceMappingURL=data.js.map