📄 getMainAxisFromPlacement.js.flow
/home/palash/git/site/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js.flow
Language: flow • Lines: 8
// @flow
import type { Placement } from '../enums';

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