Skip to content

Commit

Permalink
Remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
OlexG authored Aug 15, 2022
1 parent 9bdc789 commit 5c5eb56
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,6 @@ export function diffCharacters(
newStringPointer < newString.length ||
commonSubsequencePointer < commonSubsequence.length
) {
console.log(
oldStringPointer,
newStringPointer,
commonSubsequencePointer,
)
if (
oldStringPointer < oldString.length &&
(!ignoreCase && oldString[oldStringPointer] !==
Expand Down Expand Up @@ -148,4 +143,4 @@ export function diffCharacters(
}
}
return result;
}
}

0 comments on commit 5c5eb56

Please sign in to comment.