UNPKG

thenavisapp

Version:

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

8 lines (6 loc) 195 B
import { Writable } from 'node:stream'; export class DevNullStream extends Writable { override _write(_chunk: string, _encoding: string, cb: () => void): void { cb(); } }