Skip to content

Commit

Permalink
Fix strictEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Oct 10, 2016
1 parent 52d3b98 commit 1d4af61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operators.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
operator('>=', 'greaterOrEqual', 8, 'a>=b');
operator('<', 'less', 8, 'a<b');
operator('<=', 'lessOrEqual', 8, 'a<=b');
operator('===', 'looseEqual', 9, 'a===b');
operator('===', 'strictEqual', 9, 'a===b');
operator('==', 'equal', 9, 'a==b');
operator('&', 'and', 8, 'a&&b');
operator('|', 'or', 8, 'a||b');
Expand Down

0 comments on commit 1d4af61

Please sign in to comment.