blob: c91da1c41321290eda28e829269a99b1adeb333c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
'use strict'
const inherits = require('node:util').inherits
const ReadableStream = require('node:stream').Readable
function PartStream (opts) {
ReadableStream.call(this, opts)
}
inherits(PartStream, ReadableStream)
PartStream.prototype._read = function (n) {}
module.exports = PartStream
|