(data: Uint32Array, start: number, end: number)
| 157 | } |
| 158 | |
| 159 | public put(data: Uint32Array, start: number, end: number): void { |
| 160 | if (this._hitLimit) { |
| 161 | return; |
| 162 | } |
| 163 | this._data += utf32ToString(data, start, end); |
| 164 | if (this._data.length > PAYLOAD_LIMIT) { |
| 165 | this._data = ''; |
| 166 | this._hitLimit = true; |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | public unhook(success: boolean): boolean | Promise<boolean> { |
| 171 | let ret: boolean | Promise<boolean> = false; |
nothing calls this directly
no test coverage detected