(data, hint)
| 18228 | if (__privateGet(this, _maxPayloadSize) > 0 && !isControlFrame(__privateGet(this, _info).opcode) && __privateGet(this, _info).payloadLength + __privateGet(this, _fragmentsBytes) > __privateGet(this, _maxPayloadSize)) { |
| 18229 | failWebsocketConnectionWithCode(this.ws, 1009, "Payload size exceeds maximum allowed size"); |
| 18230 | return false; |
| 18231 | } |
| 18232 | return true; |
| 18233 | }; |
| 18234 | module.exports = { |
| 18235 | ByteParser |
no test coverage detected