mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
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 Backport-PR-URL: https://github.com/nodejs/node/pull/35349 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
'use strict';
|
|
|
|
// TODO(mcollina): deprecate this file
|
|
|
|
const Transform = require('internal/streams/transform');
|
|
module.exports = Transform;
|