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

6 lines
112 B
Text
Raw Normal View History

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