shift73k/assets_old/node_modules/@popperjs/core/lib/utils/getAltAxis.js.flow

5 lines
112 B
Text

// @flow
export default function getAltAxis(axis: 'x' | 'y'): 'x' | 'y' {
return axis === 'x' ? 'y' : 'x';
}