Skip to main content
Module

std/encoding/hex.ts>encode

Deno standard library
Go to Latest
function encode
import { encode } from "https://deno.land/std@0.41.0/encoding/hex.ts";

Encode encodes src into encodedLen(src.length) bytes of dst. As a convenience, it returns the number of bytes written to dst but this value is always encodedLen(src.length). Encode implements hexadecimal encoding.

Parameters

dst: Uint8Array
src: Uint8Array

Returns

number