JS eval
eval will always parse the string you pass as a script, not a module. So if you want eval for modules you have several options:
- import
- worker
- child process (
exec,spawn, etc.) - WA quickjs ↗
- secure-exec ↗
eval will always parse the string you pass as a script, not a module. So if you want eval for modules you have several options:
exec, spawn, etc.)