-Deno.test({
- name: "Calling b2a returns the correct string.",
- fn: () =>
- Object.entries(base64s).forEach(([key, value]) =>
- assertStrictEquals(b2a(value), key)
- ),
-});
-
-Deno.test({
- name: "Calling a2b returns the correct data.",
- fn: () => {