(byteArray: Uint8Array)
| 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. |
no test coverage detected