hmc-guide/themes/hugo-mod-jslibs-dist/popperjs/package/lib/utils/getAltLen.js.flow

6 lines
140 B
Plaintext

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