``` var Lazy = require('lazy'); var l = Lazy(); l.lines.join(function (x) { console.log(x); }); l.emit('data', 'abc\ndef'); l.emit('end'); ``` Expected output: ``` [ <Buffer 61 62 63>, <Buffer 64 65 66> ] ``` Actual output: ``` [ <Buffer 61 62 63> ] ```