UNPKG
@fastify/busboy
Version:
latest (3.2.0)
next (1.0.0-next2)
3.2.0
3.1.1
3.1.0
3.0.0
2.1.1
2.1.0
2.0.0
1.2.1
1.2.0
1.1.0
1.0.0
1.0.0-next2
1.0.0-next1
A streaming parser for HTML form data for node.js
github.com/fastify/busboy
fastify/busboy
@fastify/busboy
/
deps
/
dicer
/
lib
/
PartStream.js
14 lines
(9 loc)
•
294 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'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