Skip to content

Commit

Permalink
fix: remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
willfarrell committed Aug 19, 2022
1 parent 57c5b9f commit d0d1428
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ export const detectChar = (chunk, pattern) => {
if (chars[char] > 5) return char
}
// pattern.lastIndex = 0 // not reused again
console.log(pattern, chars, chunk)
const { key } = Object.keys(chars)
.map((key) => ({ key, value: chars[key] }))
.sort((a, b) => a.value - b.value)[0]
Expand Down

0 comments on commit d0d1428

Please sign in to comment.