Skip to content

Commit

Permalink
feat: add != op
Browse files Browse the repository at this point in the history
  • Loading branch information
LuanRT committed Sep 13, 2022
1 parent b110160 commit 97e17f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/nodes/BinaryExpression.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export default class BinaryExpression {
return left_node === right_node;
case '!==':
return left_node !== right_node;
case '!=':
return left_node != right_node;
case '>':
return left_node > right_node;
case '<':
Expand Down

0 comments on commit 97e17f9

Please sign in to comment.