6 lines
97 B
JavaScript

function eachAxis(callback) {
return [callback("x"), callback("y")];
}
export { eachAxis };