function base64.encodeBase64import { base64 } from "https://dotland.deno.dev/x/postgres@v0.19.0/deps.ts"; const { encodeBase64 } = base64; encodeBase64(data: ArrayBuffer | Uint8Array | string): stringConverts data into a base64-encoded string. ExamplesExample 1 import { encodeBase64 } from "https://deno.land/std@$STD_VERSION/encoding/base64.ts"; encodeBase64("foobar"); // "Zm9vYmFy" Parametersdata: ArrayBuffer | Uint8Array | stringReturnsstring