You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
270 B

  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;