Files
2025-07-02 21:55:07 +09:00

3 lines
89 B
JavaScript

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