| 1 | interface MakeBaseDecoder { |
| 2 | (baseAlphabet: string): { |
| 3 | decode: (input: string) => Uint8Array; |
| 4 | }; |
| 5 | } |
| 6 | |
| 7 | export const makeBaseDecoder: MakeBaseDecoder = baseAlphabet => { |
| 8 | let n = baseAlphabet.length; |
nothing calls this directly
no outgoing calls
no test coverage detected