main
Last change
on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
294 bytes
|
Line | |
---|
1 | 'use strict'
|
---|
2 |
|
---|
3 | const inherits = require('node:util').inherits
|
---|
4 | const ReadableStream = require('node:stream').Readable
|
---|
5 |
|
---|
6 | function PartStream (opts) {
|
---|
7 | ReadableStream.call(this, opts)
|
---|
8 | }
|
---|
9 | inherits(PartStream, ReadableStream)
|
---|
10 |
|
---|
11 | PartStream.prototype._read = function (n) {}
|
---|
12 |
|
---|
13 | module.exports = PartStream
|
---|
Note:
See
TracBrowser
for help on using the repository browser.