38941-vm/staticfiles/@popperjs/core/lib/utils/getMainAxisFromPlacement.js
2026-03-03 01:00:25 +00:00

3 lines
127 B
JavaScript

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