import { decodeAscii85 } from "https://deno.land/std@0.220.0/encoding/ascii85.ts";
Decodes a given ascii85-encoded string.
Examples
Example 1
Example 1
import { decodeAscii85 } from "https://deno.land/std@0.220.0/encoding/ascii85.ts";
decodeAscii85("87cURD]j7BEbo80"); // => Uint8Array [ 72, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100, 33 ]
Parameters
optional
options: Ascii85Options