shift73k/assets_old/node_modules/@popperjs/core/dist/esm/utils/getMainAxisFromPlacement.js

3 lines
127 B
JavaScript
Raw Normal View History

export default function getMainAxisFromPlacement(placement) {
return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';
}