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
Several place in the source, something similiar to this is used at the start of a function
functionlambda(tmpl,t){varf,fn=[],t=t||tag,
...
}
This is invalid JS as the variable 't' is declared twice. First as an argument in the function signature and then as a local variable inside the function body. The correct approach would be something like this:
functionlambda(tmpl,t){t=t||tag;varf,fn=[],
...
}
As far as I can tell this is repeated on line 42, 96 and 113
The text was updated successfully, but these errors were encountered:
Several place in the source, something similiar to this is used at the start of a function
This is invalid JS as the variable 't' is declared twice. First as an argument in the function signature and then as a local variable inside the function body. The correct approach would be something like this:
As far as I can tell this is repeated on line 42, 96 and 113
The text was updated successfully, but these errors were encountered: