Skip to main content
Go to Latest
function decodeBase32
import { decodeBase32 } from "https://deno.land/std@0.221.0/encoding/base32.ts";

Decodes a base32-encoded string.

Examples

Example 1

import { decodeBase32 } from "https://deno.land/std@0.221.0/encoding/base32.ts";

decodeBase32("NRQMA==="); // Uint8Array(3) [ 108, 96, 192 ]

Parameters

b32: string

Returns

Uint8Array