37079-vm/staticfiles/@popperjs/core/lib/utils/getMainAxisFromPlacement.js.flow
2025-12-20 01:09:41 +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';
}