Skip to main content
Go to Latest
function base64Decode
import { base64Decode } from "https://deno.land/x/simple_utility@v1.3.4/mod.universal.ts";

Convert from base64 encoded string to binary.

Examples

Example 1

const bin = await Deno.readFile("./file");
const converted = base64Encode(bin);
const restored = base64Decode(converted);

Parameters

data: string

Returns

Uint8Array