javascript-deobfuscator
javascript-deobfuscator copied to clipboard
?. and ?? operators not handled by parser
var i = undefined;
i?.call();
var x = i ?? 0;
This will cause a parser error. Not sure if you use a library for this that needs updating or not.