(blob: Blob)
| 586 | } |
| 587 | |
| 588 | public readAsDataURL(blob: Blob) { |
| 589 | this._read(blob, 'readAsDataURL'); |
| 590 | this._result = `data:${blob.type};base64,${this._array2base64(Blob.InternalAccessor.getBuffer(blob))}`; |
| 591 | } |
| 592 | |
| 593 | public readAsText(blob: Blob) { |
| 594 | this._read(blob, 'readAsText'); |
nothing calls this directly
no test coverage detected