(input: Uint8Array)
| 27 | |
| 28 | describe("decodeBase64", () => { |
| 29 | function nodeEncodeBase64(input: Uint8Array) { |
| 30 | return Buffer.from(input).toString("base64"); |
| 31 | } |
| 32 | |
| 33 | inputs.forEach((input) => { |
| 34 | describe(`input length = ${input.length}`, () => { |