mirror of
https://github.com/egor-tensin/cleanup-path.git
synced 2025-07-03 01:54:37 +03:00
bump version in package.json, upgrade dependencies
This commit is contained in:
parent
33bc58ef4a
commit
2d40e8046a
188 changed files with 30772 additions and 71 deletions
13
node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js
generated
vendored
Normal file
13
node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js
generated
vendored
Normal 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