• Decodes the given hex-encoded string. If the input is malformed, an error is thrown.

    Parameters

    • src: string

    Returns Uint8Array

    Example

    import { decodeHex } from "https://deno.land/std@$STD_VERSION/encoding/hex.ts";

    decodeHex("616263"); // Uint8Array(3) [ 97, 98, 99 ]

Generated using TypeDoc