mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
9c62e0e384
Move all the streams constructors to internal/streams and avoid a circular dependencies between the modules. See: https://github.com/nodejs/readable-stream/issues/348 PR-URL: https://github.com/nodejs/node/pull/35239 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
'use strict';
|
|
|
|
// TODO(mcollina): deprecate this file
|
|
|
|
const PassThrough = require('internal/streams/passthrough');
|
|
module.exports = PassThrough;
|