By extending the Transform class from the stream module and implementing the _transform method to define how data should be transformed.
Handles the transformation logic for each chunk of data.
chunk is the current piece of data being transformed.
callback is called when the transformation is complete.
Optional: It allows you to perform any cleanup or final transformations when the stream ends.