2025-12-22 19:31:55 +00:00

3 lines
79 B
JavaScript

export default function getAltAxis(axis) {
return axis === 'x' ? 'y' : 'x';
}