diff options
Diffstat (limited to 'ext/fg/js/source-range.js')
| -rw-r--r-- | ext/fg/js/source-range.js | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/source-range.js b/ext/fg/js/source-range.js index 879b949c..a25b3fdc 100644 --- a/ext/fg/js/source-range.js +++ b/ext/fg/js/source-range.js @@ -77,7 +77,7 @@ class TextSourceRange {      }      equals(other) { -        return other.rng && other.rng.compareBoundaryPoints(Range.START_TO_START, this.rng) == 0; +        return other.rng && other.rng.compareBoundaryPoints(Range.START_TO_START, this.rng) === 0;      }      static seekForward(node, length) {  |