sim-lib-lang-javascript 0.2.0

Thin direct JavaScript core profile for the SIM expression runtime.
Documentation
1
2
3
4
let packet = JSON.parse('{"10":"ten","2":"two","drop":true}', (key, value) =>
  key === "drop" ? undefined : value
);
JSON.stringify(packet);