芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/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'; }