-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
Expected Behavior
This input JavaScript code
// input.js
try { await; } catch { console.log("caught"); }should print caught due to ReferenceError in try block. (free identifier await)
$ node --version
v18.11.0
$ node input.js
caughtCurrent Behavior
Obfuscator crashes when the input.js is given.

Note: var await; works fine.
Steps to Reproduce
- I used https://obfuscator.io/ (with default settings) to make this error.
- Paste
input.js. - Obfuscate.
Your Environment
- Obfuscator version used: https://obfuscator.io/
- Node version used: 18.11.0