Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
13
my-app/node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js
generated
vendored
Executable file
13
my-app/node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js
generated
vendored
Executable file
|
@ -0,0 +1,13 @@
|
|||
'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
|
Loading…
Add table
Add a link
Reference in a new issue