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

6 lines
140 B
Text
Raw Normal View History

// @flow
export default function getAltLen(len: 'width' | 'height'): 'width' | 'height' {
return len === 'width' ? 'height' : 'width';
}