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

Decodes a given ascii85-encoded string.

Examples

Example 1

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

decodeAscii85("87cURD]j7BEbo80"); // => Uint8Array [ 72, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100, 33 ]

Parameters

ascii85: string
optional
options: Ascii85Options

Returns

Uint8Array