From 87038e44cd4f29dc40a8a152120dc44f351fa0ec Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 1 Aug 2014 18:25:21 +0200 Subject: [PATCH] Add strict equalities in src/core/evaluator.js --- src/core/evaluator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/evaluator.js b/src/core/evaluator.js index abd9be3ef..82c669561 100644 --- a/src/core/evaluator.js +++ b/src/core/evaluator.js @@ -1436,7 +1436,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() { firstWidth = glyphWidth; continue; } - if (firstWidth != glyphWidth) { + if (firstWidth !== glyphWidth) { isMonospace = false; break; }