import * as mod from "https://deno.land/std@0.222.0/encoding/hex.ts";
Port of the Go encoding/hex library.
This module is browser compatible.
import {
decodeHex,
encodeHex,
} from "https://deno.land/std@0.222.0/encoding/hex.ts";
const encoded = encodeHex("abc"); // "616263"
decodeHex(encoded); // Uint8Array(3) [ 97, 98, 99 ]