mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-20 13:43:50 +09:00
3 lines
127 B
JavaScript
3 lines
127 B
JavaScript
export default function getMainAxisFromPlacement(placement) {
|
|
return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';
|
|
} |