(chunk)
| 659 | } |
| 660 | |
| 661 | #decodeBlobError(chunk) { |
| 662 | const string = this.#decodeBlobString(String, chunk); |
| 663 | return typeof string === 'function' ? |
| 664 | this.#continueDecodeBlobError.bind(this, string) : |
| 665 | new BlobError(string); |
| 666 | } |
| 667 | |
| 668 | #continueDecodeBlobError(stringCb, chunk) { |
| 669 | const string = stringCb(chunk); |
no test coverage detected