function hex.encodeHeximport { hex } from "https://dotland.deno.dev/x/postgres@v0.19.0/tests/test_deps.ts"; const { encodeHex } = hex; encodeHex(src: string | Uint8Array | ArrayBuffer): stringConverts data into a hex-encoded string. ExamplesExample 1 import { encodeHex } from "https://deno.land/std@$STD_VERSION/encoding/hex.ts"; encodeHex("abc"); // "616263" Parameterssrc: string | Uint8Array | ArrayBufferReturnsstring