3 lines
79 B
Plaintext
3 lines
79 B
Plaintext
|
export default function getAltAxis(axis) {
|
||
|
return axis === 'x' ? 'y' : 'x';
|
||
|
}
|