37135-vm/staticfiles/@popperjs/core/lib/utils/getMainAxisFromPlacement.js.flow
2025-12-23 18:47:07 +00:00

9 lines
207 B
Plaintext

// @flow
import type { Placement } from '../enums';
export default function getMainAxisFromPlacement(
placement: Placement
): 'x' | 'y' {
return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';
}