javascript 0.3.0

A JavaScript engine implementation in Rust
Documentation
1
2
3
4
5
6
try {
  function f(a, b, ...rest) { return rest.length; }
  if (f(1, 2, 3, 4, 5) === 3) console.log("OK");
} catch (e) {
  // not supported
}