node/lib/_stream_transform.js
Matteo Collina fb14acb22c
stream: move to internal/streams
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>
2020-12-02 19:22:19 +00:00

7 lines
140 B
JavaScript

'use strict';
// TODO(mcollina): deprecate this file
const Transform = require('internal/streams/transform');
module.exports = Transform;