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
can be negated by grouping them and applying the ! operator, i.e.
!(ainobj);!(ainstanceofC);
Applying the ! operator incorrectly (on the LHS operand) leads to bugs:
!ainobj;// will evaluate to false, unless obj has a "true" or "false" key!ainstanceofC;// will evaluate to false, unless C overrides instanceof with a @@hasInstance method
in
andinstanceof
expressions in JScan be negated by grouping them and applying the
!
operator, i.e.Applying the
!
operator incorrectly (on the LHS operand) leads to bugs:For more information, please see these MDN docs and the no-unsafe-negation recommended Eslint rule.
I have found several potentially problematic instances of the above bugs in your codebase:
https://sourcegraph.com/search?q=context:global+repo:%5Egithub%5C.com/gkz/LiveScript%24+lang:javascript+/%5C%21%5B%5B:alnum:%5D%5D%2B+instanceof+%5B%5B:alnum:%5D%5D%2B/+-file:%5C.min%5C.js%24+count:all&patternType=standard&sm=1&groupBy=repo
The text was updated successfully, but these errors were encountered: