source:
trip-planner-front/node_modules/parse5-sax-parser/lib/dev-null-stream.js@
bdd6491
Last change on this file since bdd6491 was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 184 bytes |
Line | |
---|---|
1 | 'use strict'; |
2 | |
3 | const { Writable } = require('stream'); |
4 | |
5 | class DevNullStream extends Writable { |
6 | _write(chunk, encoding, cb) { |
7 | cb(); |
8 | } |
9 | } |
10 | |
11 | module.exports = DevNullStream; |
Note:
See TracBrowser
for help on using the repository browser.