* @see https://w3c.github.io/FileAPI/#dfn-readAsDataURL * @param {import('buffer').Blob} blob
(blob)
| 61440 | encoding = webidl.converters.DOMString(encoding); |
| 61441 | } |
| 61442 | readOperation(this, blob, "Text", encoding); |
| 61443 | } |
| 61444 | /** |
| 61445 | * @see https://w3c.github.io/FileAPI/#dfn-readAsDataURL |
| 61446 | * @param {import('buffer').Blob} blob |
| 61447 | */ |
| 61448 | readAsDataURL(blob) { |
| 61449 | webidl.brandCheck(this, _FileReader); |
| 61450 | webidl.argumentLengthCheck(arguments, 1, { header: "FileReader.readAsDataURL" }); |
nothing calls this directly
no test coverage detected