DIR: /proc/self/cwd/node_modules/@popperjs/core/lib/utils/ |
Current File : //proc/self/cwd/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js.flow |
// @flow import type { Placement } from '../enums'; export default function getMainAxisFromPlacement( placement: Placement ): 'x' | 'y' { return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; } |