File size: 283 Bytes
21dd449 |
1 2 3 4 5 6 7 8 9 10 11 12 |
export function hexFromBytes(arr: Uint8Array): string {
if (globalThis.Buffer) {
return globalThis.Buffer.from(arr).toString("hex");
} else {
const bin: string[] = [];
arr.forEach((byte) => {
bin.push(byte.toString(16).padStart(2, "0"));
});
return bin.join("");
}
}
|