Files
simpleidp/wwwroot/lib/popper.js/esm/utils/getMainAxisFromPlacement.js
2025-08-19 16:58:51 +02:00

3 lines
127 B
JavaScript

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