* @see https://w3c.github.io/FileAPI/#readAsBinaryString * @param {import('buffer').Blob} blob
(blob)
| 61416 | webidl.argumentLengthCheck(arguments, 1, { header: "FileReader.readAsArrayBuffer" }); |
| 61417 | blob = webidl.converters.Blob(blob, { strict: false }); |
| 61418 | readOperation(this, blob, "ArrayBuffer"); |
| 61419 | } |
| 61420 | /** |
| 61421 | * @see https://w3c.github.io/FileAPI/#readAsBinaryString |
| 61422 | * @param {import('buffer').Blob} blob |
| 61423 | */ |
| 61424 | readAsBinaryString(blob) { |
| 61425 | webidl.brandCheck(this, _FileReader); |
| 61426 | webidl.argumentLengthCheck(arguments, 1, { header: "FileReader.readAsBinaryString" }); |
nothing calls this directly
no test coverage detected