What is the pause() method used for in a readable stream, and how can you resume data flow?
The pause() method is used to temporarily stop the flow of data from a readable stream. You can resume data flow by calling the resume() method on the same stream instance.