We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A minimal case which runs on the latest master.
var Lazy = require('./lazy'); var l = new Lazy(); l.lines.forEach(function (x) { console.log(x); }); l.emit('data', 'abc\n\n');
Actual output:
<Buffer 61 62 63> <Buffer 30>
Expected output:
<Buffer 61 62 63> <Buffer >
The text was updated successfully, but these errors were encountered:
Fix and test for Issue pkrumins#41
f21bb94
Have you considered pulling this commit? The issue is still in the live version on NPM.
Sorry, something went wrong.
16ba5d2
No branches or pull requests
A minimal case which runs on the latest master.
Actual output:
Expected output:
The text was updated successfully, but these errors were encountered: