in src/main/resources/static/components/session/AxtMessage.ts [173:175]
3 lines of code
2 McCabe index (conditional complexity)
function getString(payLoad: Uint8Array, text: boolean): string {
return text ? new TextDecoder().decode(payLoad) : ByteBuffer.wrap(payLoad).toString("hex")
}