Whether this stream should automatically call .destroy() on itself after ending.
Whether or not to decode strings into Buffers before passing them to _write().
The default encoding that is used when no encoding is specified as an argument to stream.write().
Whether or not the stream should emit 'close' after it has been destroyed.
If specified, then buffers will be decoded to strings using the specified encoding.
The maximum number of bytes to store in the internal buffer before ceasing to read from the underlying resource. Default=16kb, or 16 for objectMode streams.
Input source data.
Encoding name for input, ignored if input is not a String.
Whether this stream should behave as a stream of objects. Meaning that stream.read(n) returns a single value instead of a Buffer of size n.
If true, when a read() underflows, throw an error.
Sets highWaterMark for the readable side of the stream. Has no effect if highWaterMark is provided.
Sets objectMode for readable side of the stream. Has no effect if objectMode is true.
Whether to watch for 'pipe' events, setting this stream's objectMode based on the objectMode of the input stream.
Sets highWaterMark for the writable side of the stream. Has no effect if highWaterMark is provided.
Sets objectMode for writable side of the stream. Has no effect if objectMode is true.
If set to false, then the stream will automatically end the writable side when the readable side ends.