37077-vm/staticfiles/@popperjs/core/lib/utils/getMainAxisFromPlacement.js
2025-12-19 22:19:18 +00:00

3 lines
127 B
JavaScript

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