Skip to main content
Module

x/lume/deps/hex.ts>decodeHex

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

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

Examples

Example 1

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

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

Parameters

src: string

Returns

Uint8Array