Null writable stream
npm install null-writable




This module provides aWritable which
accepts all data and do nothing. It is like /dev/null for Node.js streams.
It implements _writev method so it is fast enough for buffered operations.
This module requires Node >= 16.
``shell`
npm install null-writable
_Additionally for Typescript:_
`shell`
npm install -D @types/node
`js`
import NullWritable from "null-writable"
// or
import {NullWritable} from "null-writable"
Create a new NullWritable instance.
Options are the same as for Writable constructor, like ie. highWaterMark`.
Copyright (c) 2018-2024 Piotr Roszatycki