Skip to main content
Module

std/encoding/base64.ts>decodeBase64

The Deno Standard Library
Latest
function decodeBase64
import { decodeBase64 } from "https://deno.land/std@0.224.0/encoding/base64.ts";

Decodes a base64-encoded string.

Examples

Example 1

import { decodeBase64 } from "https://deno.land/std@0.224.0/encoding/base64.ts";

decodeBase64("Zm9vYmFy"); // Uint8Array(6) [ 102, 111, 111, 98, 97, 114 ]

Parameters

b64: string

The base64-encoded string to decode.

Returns

Uint8Array

The decoded data.