Baseline Widely available
Note: This feature is available in Web Workers.
The error()
method of the WritableStreamDefaultController
interface causes any future interactions with the associated stream to error.
This method is rarely used, since usually it suffices to return a rejected promise from one of the underlying sink's methods. However, it can be useful for suddenly shutting down a stream in response to an event outside the normal lifecycle of interactions with the underlying sink.
Syntax Parametersmessage
A string representing the error you want future interactions to fail with.
None (undefined
).
TypeError
The stream you are trying to error is not a WritableStream
.
const writableStream = new WritableStream({
start(controller) {
// do stuff with controller
// error stream if necessary
controller.error("My error is broken");
},
write(chunk, controller) {
// â¦
},
close(controller) {
// â¦
},
abort(err) {
// â¦
},
});
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4