Files
frontend/node_modules/rc-picker/es/utils/uiUtil.js
2026-01-17 15:16:36 -05:00

7 lines
210 B
JavaScript

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