Hacker News new | ask | show | jobs
by Jasper_ 4639 days ago
It even works for argument lists too:

  function foo(a, { b: b, c: c }, [d, e]) {
     print (a, b, c, d, e);
  }