amis-rpc-design/node_modules/rc-menu/es/utils/motionUtil.js
2023-10-07 19:42:30 +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;
}