PartStream.js 270 B

1234567891011
  1. var inherits = require('util').inherits,
  2. ReadableStream = require('stream').Readable;
  3. function PartStream(opts) {
  4. ReadableStream.call(this, opts);
  5. }
  6. inherits(PartStream, ReadableStream);
  7. PartStream.prototype._read = function(n) {};
  8. module.exports = PartStream;