I am trying to isolate user JavaScript code for security. I can do this via Iframe security and message passing.
Is there a JavaScript runtime that can be loaded via webassembly to which i can pass something simple like '5+3' and read the result.
If this was c# etc I could new up and manage a V8 engine and have it execute the javascript and pass back to the host.