WritableStream
 Background
A WritableStream is the writable property of a TransformStream. On the Workers platform, WritableStream cannot be directly created using the WritableStream constructor.
A typical way to write to a WritableStream is to pipe a ReadableStream to it.
To write to a WritableStream directly, you must use its writer.
Refer to the WritableStreamDefaultWriter documentation for further detail.
 Properties
- locked- boolean- A Boolean value to indicate if the writable stream is locked to a writer.
 
 Methods
- abort(reasonstring):- Promise<void>- Aborts the stream. This method returns a promise that fulfills with a response undefined.reasonis an optional human-readable string indicating the reason for cancellation.reasonwill be passed to the underlying sink’s abort algorithm. If this writable stream is one side of a TransformStream, then its abort algorithm causes the transform’s readable side to become errored withreason.
 
- Aborts the stream. This method returns a promise that fulfills with a response 
- getWriter():- WritableStreamDefaultWriter- Gets an instance of WritableStreamDefaultWriterand locks theWritableStreamto that writer instance.
 
- Gets an instance of