Fix typo in sourcemap filtering.

This commit is contained in:
Logan Smyth
2018-05-06 22:16:25 -07:00
parent ca639b4262
commit ef68114d67

View File

@@ -293,7 +293,7 @@ function findInsertionLocation<T>(
// Ensure the value is the start of any set of matches.
let i = left;
if (i < array.length) {
while (i > 0 && callback(array[i]) >= 0) {
while (i >= 0 && callback(array[i]) >= 0) {
i--;
}
return i + 1;