blob: b646ac0b6378f4d2781860af4b0585a0fc47770a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
var inherits = require('util').inherits,
ReadableStream = require('stream').Readable;
function PartStream(opts) {
ReadableStream.call(this, opts);
}
inherits(PartStream, ReadableStream);
PartStream.prototype._read = function(n) {};
module.exports = PartStream;
|