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