We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0790d09 commit 14fb384Copy full SHA for 14fb384
1 file changed
src/bases/base45.ts
@@ -1,4 +1,4 @@
1
-import { from } from './base.js'
+import { from } from './base.ts'
2
3
const alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:'
4
@@ -31,7 +31,7 @@ export const base45 = from({
31
}
32
return ret
33
},
34
- decode: (input: string): Uint8Array => {
+ decode: (input: string): Uint8Array<ArrayBuffer> => {
35
if ((input.length * 2) % 3 === 2) {
36
throw new Error('Unexpected end of data')
37
0 commit comments