Skip to content

Commit

Permalink
don't init unused error (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
gurgunday authored Nov 20, 2023
1 parent 750f4ec commit 982a743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/decodeText.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const decoders = {
if (textDecoders.has(this.toString())) {
try {
return textDecoders.get(this).decode(data)
} catch (e) { }
} catch {}
}
return typeof data === 'string'
? data
Expand Down

0 comments on commit 982a743

Please sign in to comment.