ohctechv3/.svn/pristine/d6/d675147b6ebc7bf685cc8551ab9884791ceb0134.svn-base
2024-10-28 15:03:36 +05:30

6 lines
140 B
Plaintext

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