function decodeHeximport { decodeHex } from "https://dotland.deno.dev/std@0.215.0/encoding/hex.ts"; decodeHex(src: string): Uint8ArrayDecodes the given hex-encoded string. If the input is malformed, an error is thrown. ExamplesExample 1 import { decodeHex } from "https://deno.land/std@0.215.0/encoding/hex.ts"; decodeHex("616263"); // Uint8Array(3) [ 97, 98, 99 ] Parameterssrc: stringReturnsUint8Array