You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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];
}
The text was updated successfully, but these errors were encountered:
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];
}
The text was updated successfully, but these errors were encountered: