Closed onexdata closed 7 years ago
is this even allowed in JS? ESLint gives me error: .
Judging from this message there is a difference if strict mode is enabled or not:
Chrome Dev Tools: console
(function () { return '\033' })()
(runs without errors);
(function () {"use strict"; return '\033'})()
use strict enabled - there is an error:
Uncaught SyntaxError: Octal literals are not allowed in strict mode.
So I think there are two possible things to do:
This line:
will break parsing.