MCPcopy Create free account
hub / github.com/GDATASoftwareAG/vaas / toHexString

Method toHexString

typescript/src/Vaas.ts:73–77  ·  view source on GitHub ↗
(byteArray: Uint8Array)

Source from the content-addressed store, hash-verified

71 }
72
73 public static toHexString(byteArray: Uint8Array) {
74 return Array.from(byteArray, function (byte) {
75 return ("0" + (byte & 0xff).toString(16)).slice(-2);
76 }).join("");
77 }
78
79 /** Get verdict for Readable Stream
80 * @throws {VaasInvalidStateError} If connect() has not been called and awaited. Signifies caller error.

Callers 2

forRequestMethod · 0.80
test.tsFile · 0.80

Calls 1

fromMethod · 0.45

Tested by

no test coverage detected