PromoCursed/node_modules/rc-menu/lib/utils/motionUtil.js
2024-08-20 23:25:37 +04:00

15 lines
307 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getMotion = getMotion;
function getMotion(mode, motion, defaultMotions) {
if (motion) {
return motion;
}
if (defaultMotions) {
return defaultMotions[mode] || defaultMotions.other;
}
return undefined;
}