import { decodeHex } from "https://deno.land/std@0.220.0/encoding/hex.ts";
Decodes the given hex-encoded string. If the input is malformed, an error is thrown.
Examples
Example 1
Example 1
import { decodeHex } from "https://deno.land/std@0.220.0/encoding/hex.ts";
decodeHex("616263"); // Uint8Array(3) [ 97, 98, 99 ]