minishouyin/node_modules/rc-picker/es/utils/uiUtil.js

7 lines
210 B
JavaScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
// ====================== Mode ======================
export function getRealPlacement(placement, rtl) {
if (placement !== undefined) {
return placement;
}
return rtl ? 'bottomRight' : 'bottomLeft';
}