mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-20 10:13:53 +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';
|
|
} |