hmc-guide/themes/hugo-mod-jslibs-dist/popperjs/package/dist/esm/utils/getMainAxisFromPlacement.js

3 lines
127 B
JavaScript

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