Skip to main content
Module

x/lume/deps/hex.ts

🔥 Static site generator for Deno 🦕
Very Popular
Latest
import * as lume from "https://deno.land/x/lume@v2.1.4/deps/hex.ts";

Port of the Go encoding/hex library.

This module is browser compatible.

import {
  decodeHex,
  encodeHex,
} from "https://deno.land/std@0.224.0/encoding/hex.ts";

const encoded = encodeHex("abc"); // "616263"

decodeHex(encoded); // Uint8Array(3) [ 97, 98, 99 ]

Functions

Decodes the given hex-encoded string. If the input is malformed, an error is thrown.

Converts data into a hex-encoded string.