minishouyin/node_modules/rc-menu/es/utils/motionUtil.js
2025-11-12 11:35:57 +08:00

9 lines
203 B
JavaScript

export function getMotion(mode, motion, defaultMotions) {
if (motion) {
return motion;
}
if (defaultMotions) {
return defaultMotions[mode] || defaultMotions.other;
}
return undefined;
}