Files
2026-01-16 02:20:32 +00:00

7 lines
210 B
JavaScript

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