For example, the following:
Class: stream.Transform#
Transform streams are Duplex streams where the output is in some way computed from the input. They implement both the Readable and Writable interfaces.
Examples of Transform streams include:
zlib streams
crypto streams
To state that the output is in some way computed from the input as a distinguishing characteristics of Transform streams necessitating Duplex functionality is not helpful since all streams would necessarily seem to calculate their outputs from their inputs.
For example, the following:
To state that
the output is in some way computed from the inputas a distinguishing characteristics of Transform streams necessitating Duplex functionality is not helpful since all streams would necessarily seem to calculate their outputs from their inputs.