UNPKG

127 BJavaScriptView Raw
1export default function getMainAxisFromPlacement(placement) {
2 return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';
3}
\No newline at end of file