Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Hex.stringify

import { Hex } from "https://raw.githubusercontent.com/marigold-dev/tzstamp/0.3.4/helpers/mod.ts"; 

const { stringify } = Hex;

Creates a hexadecimal string from a byte array.

Hex.stringify(new Uint8Array([49, 125, 7]));
// "317d07"
function stringify(bytes: Uint8Array): string;
§
stringify(bytes: Uint8Array): string
[src]

§Parameters

§
bytes: Uint8Array
[src]

Byte array

§Return Type

§
string
[src]