40204-vm/staticfiles/@popperjs/core/lib/utils/getMainAxisFromPlacement.js
2026-06-04 16:29:07 +00:00

3 lines
127 B
JavaScript

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