each-axis.mjs 97 B

12345
  1. function eachAxis(callback) {
  2. return [callback("x"), callback("y")];
  3. }
  4. export { eachAxis };