diff options
Diffstat (limited to 'std/encoding/hex.ts')
-rw-r--r-- | std/encoding/hex.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/hex.ts b/std/encoding/hex.ts index 729df6c49..5b09422a9 100644 --- a/std/encoding/hex.ts +++ b/std/encoding/hex.ts @@ -10,7 +10,7 @@ const hextable = new TextEncoder().encode("0123456789abcdef"); export function errInvalidByte(byte: number): Error { return new Error( "encoding/hex: invalid byte: " + - new TextDecoder().decode(new Uint8Array([byte])) + new TextDecoder().decode(new Uint8Array([byte])), ); } |