(start?: number, end?: number, type?: string)
| 443 | } |
| 444 | |
| 445 | public slice(start?: number, end?: number, type?: string): Blob { |
| 446 | const slice = this._buffer.slice(start || 0, end || this._buffer.length); |
| 447 | |
| 448 | return new Blob([slice], { type: type }); |
| 449 | } |
| 450 | |
| 451 | public stream() { |
| 452 | throw new Error('stream is currently not supported'); |
no outgoing calls
no test coverage detected