MCPcopy Create free account
hub / github.com/angular/dev-infra / abort

Method abort

github-actions/saucelabs/set-saucelabs-env.js:15535–15549  ·  view source on GitHub ↗

* @see https://w3c.github.io/FileAPI/#dfn-abort

()

Source from the content-addressed store, hash-verified

15533 * @see https://w3c.github.io/FileAPI/#dfn-readAsArrayBuffer
15534 * @param {import('buffer').Blob} blob
15535 */
15536 readAsArrayBuffer(blob) {
15537 webidl.brandCheck(this, _FileReader);
15538 webidl.argumentLengthCheck(arguments, 1, "FileReader.readAsArrayBuffer");
15539 blob = webidl.converters.Blob(blob, { strict: false });
15540 readOperation(this, blob, "ArrayBuffer");
15541 }
15542 /**
15543 * @see https://w3c.github.io/FileAPI/#readAsBinaryString
15544 * @param {import('buffer').Blob} blob
15545 */
15546 readAsBinaryString(blob) {
15547 webidl.brandCheck(this, _FileReader);
15548 webidl.argumentLengthCheck(arguments, 1, "FileReader.readAsBinaryString");
15549 blob = webidl.converters.Blob(blob, { strict: false });
15550 readOperation(this, blob, "BinaryString");
15551 }
15552 /**

Callers

nothing calls this directly

Calls 1

fireAProgressEventFunction · 0.70

Tested by

no test coverage detected