function base64.decodeBase64import { base64 } from "https://dotland.deno.dev/x/postgres@v0.19.0/tests/test_deps.ts"; const { decodeBase64 } = base64; decodeBase64(b64: string): Uint8ArrayDecodes a base64-encoded string. ExamplesExample 1 import { encodeBase64 } from "https://deno.land/std@$STD_VERSION/encoding/base64.ts"; encodeBase64("foobar"); // "Zm9vYmFy" Parametersb64: stringReturnsUint8Array