UNPKG

@popperjs/core

Version:

Tooltip and Popover Positioning Engine

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