In the
@devs: Linters (e.g. eslint) should be able to catch this issue during/before build.
bossGrab
function there is a use before assignment in code:
Code:
t();
var e = new J.c;
function t() {
var t = arguments.length > 0 && void 0 !== arguments[0] && arguments[0];
clearOutput(),
clearMenu(),
author("William"),
e.showAll(t) // e = undefined
}
@devs: Linters (e.g. eslint) should be able to catch this issue during/before build.