javascript 0.3.0

A JavaScript engine implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
// feature probe for 'Set'
try {
  if (typeof Set !== 'function') throw new Error('Set missing');
  const s = new Set();
  s.add(1);
  if (!s.has(1)) throw new Error('Set failed');
  console.log('OK');
} catch (e) {
  console.log('NO');
}