From e28a86e2d7fb81386160f7b727c24bcfcd466290 Mon Sep 17 00:00:00 2001 From: Omer Ganim Date: Sun, 3 Apr 2016 14:35:52 +0300 Subject: [PATCH] remove unnecessary semicolon --- src/util/astUtil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/astUtil.js b/src/util/astUtil.js index cd6f63b..feb8980 100644 --- a/src/util/astUtil.js +++ b/src/util/astUtil.js @@ -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