source: node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 294 bytes
Line 
1'use strict'
2
3const inherits = require('node:util').inherits
4const ReadableStream = require('node:stream').Readable
5
6function PartStream (opts) {
7 ReadableStream.call(this, opts)
8}
9inherits(PartStream, ReadableStream)
10
11PartStream.prototype._read = function (n) {}
12
13module.exports = PartStream
Note: See TracBrowser for help on using the repository browser.