Open Light-Wizzard opened 5 years ago
https://github.com/google/closure-compiler he.js: line 338, col 60, Expected an assignment or function call and instead saw an expression. has(he, key) && (freeExports[key] = he[key]);
My guess would be something like this:
if (has(he, key)) { freeExports[key] = he[key]; }
same here, not accepted by google closure compiler, it complains about the undefined variable exports
https://github.com/google/closure-compiler he.js: line 338, col 60, Expected an assignment or function call and instead saw an expression. has(he, key) && (freeExports[key] = he[key]);
My guess would be something like this:
if (has(he, key)) { freeExports[key] = he[key]; }