import * as lume from "https://deno.land/x/lume@v1.19.0/deps/hex.ts";
Port of the Go encoding/hex library.
This module is browser compatible.
Examples
Example 1
Example 1
import {
decodeHex,
encodeHex,
} from "https://deno.land/std@0.224.0/encoding/hex.ts";
const binary = new TextEncoder().encode("abc");
const encoded = encodeHex(binary);
console.log(encoded);
// => "616263"
console.log(decodeHex(encoded));
// => Uint8Array(3) [ 97, 98, 99 ]
Functions
Decodes | |
Decodes the given hex string to Uint8Array. If the input is malformed, an error will be thrown. | |
Encodes | |
Encodes the source into hex string. |