Browse Source

Add strict equalities in src/core/evaluator.js

Jonas Jenwald 11 years ago
parent
commit
87038e44cd
  1. 2
      src/core/evaluator.js

2
src/core/evaluator.js

@ -1436,7 +1436,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() { @@ -1436,7 +1436,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
firstWidth = glyphWidth;
continue;
}
if (firstWidth != glyphWidth) {
if (firstWidth !== glyphWidth) {
isMonospace = false;
break;
}

Loading…
Cancel
Save