skopa/node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js

14 lines
294 B
JavaScript
Raw Normal View History

2023-12-17 18:31:13 -05:00
'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