<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Subsystem: if known, please specify affected core module name If possible, please provide code that demonstrates the problem, keeping it as simple and free of external dependencies as you are able. --> * **Version**: v8.9.4 * **Platform**: Darwin Kernel Version 16.7.0 * **Subsystem**: fs <!-- Enter your issue details below this comment. --> code is ``` const { ReadStream } = require('fs'); stream = new ReadStream('./text.txt', { // start: 0, end: 2, }); stream.on('data', data => { console.log('on data:', data.toString()); }); stream.on('end', () => { console.log('end'); }); ``` `./text.txt` is: ``` abcde ``` When options.start is 0, the output is ``` on data: abc end ``` When ignoring options.start, the output is ``` on data: abcde end ``` If it is a bug, I can attempt to fix it.