* Get as Blob for download
()
| 122 | * Get as Blob for download |
| 123 | */ |
| 124 | toBlob(): Blob { |
| 125 | return new Blob([this.toArrayBuffer()], { type: 'application/octet-stream' }); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Get current total bytes written (across all chunks) |
nothing calls this directly
no test coverage detected