Spaces:
Runtime error
Runtime error
File size: 294 Bytes
311cc15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
'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
|