import { hexDecode } from "https://deno.land/x/simple_utility@v2.0.9/mod.pure.ts";
Convert from hex string to binary.
Examples
Example 1
Example 1
const bin = await Deno.readFile("./file");
const encode = hexEncode(bin);
const decode = hexDecode(encode);