`util.pump` was deprecated [since nodejs v0.10](https://github.com/joyent/node/blob/v0.10.0-release/lib/util.js#L537-L538), and there is an ongoing discussion on removing that in the next major version: https://github.com/nodejs/node/pull/2531. The line in question: [test/example.js#L13](https://github.com/JSBizon/node-memorystream/blob/master/test/example.js#L13): ``` javascript util.pump(res, memStream); ``` should be probably replaced with ``` javascript res.pipe(memStream); ``` _I am not making a pull request because I am not a user of this package and have not tested it._