A suite to track Project Diva score statistics and ratings / D4DJ event data.
projectdivar/server/node_modules/dicer/lib/PartStream.js

12 lines
270 B

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;