-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
code optimization : replace == and != , with === and !==
!= and == is not recommended in javascript credit goes to gedit "find and replace" feature for easily doing this change the change was done in 2 times : - 1) replace all == with === replace all != with !== - 2) as @roy7 noticed, some existing === turned to ==== with the automatic change, and maybe some !== turned to !==== too maybe, so force pushing this fix : replace all ==== with === replace all !=== with !== (this last one is a sanity check)
- Loading branch information
1 parent
721a12a
commit a8ea184
Showing
5 changed files
with
120 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.