Skip to content

Commit

Permalink
remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ganimomer committed Apr 3, 2016
1 parent 4e8101e commit e28a86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/astUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ function getIsValue(value) {
* @returns {Object|undefined}
*/
function getExpressionComparedToInt(node, value, checkOver) {
const isValue = getIsValue(value);
const isValue = getIsValue(value)
if (_.includes(comparisonOperators, node.operator)) {
if (isValue(node.right)) {
return node.left
Expand Down

0 comments on commit e28a86e

Please sign in to comment.