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

7 lines
210 B
JavaScript

// ====================== Mode ======================
export function getRealPlacement(placement, rtl) {
if (placement !== undefined) {
return placement;
}
return rtl ? 'bottomRight' : 'bottomLeft';
}