Remove lint

This commit is contained in:
Tim Schaub
2018-07-18 10:35:54 -06:00
parent 71555002a8
commit b8c9125602
20 changed files with 24 additions and 24 deletions

View File

@@ -26,7 +26,7 @@ export function binarySearch(haystack, needle, opt_comparator) {
cmp = +comparator(haystack[mid], needle);
if (cmp < 0.0) { /* Too low. */
low = mid + 1;
low = mid + 1;
} else { /* Key found or too high */
high = mid;