mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00: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
137 B
JavaScript
7 lines
137 B
JavaScript
'use strict';
|
|
|
|
// TODO(mcollina): deprecate this file
|
|
|
|
const Readable = require('internal/streams/readable');
|
|
module.exports = Readable;
|