📄 getAltLen.js.flow
/home/palash/git/site/node_modules/@popperjs/core/lib/utils/getAltLen.js.flow
Language: flow • Lines: 5
// @flow

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