node-lazy icon indicating copy to clipboard operation
node-lazy copied to clipboard

lazy lists for node.js

Results 24 node-lazy issues
Sort by recently updated
recently updated
newest added

The latest version contains the following files with stray characters. What is the purpose of these files? I didn't see these file in the github archive. Only see them in...

specifying the type and URL is deprecated: https://docs.npmjs.com/files/package.json#license http://npm1k.org/

Exceptions don't appear to be re-thrown inside map() calls; ``` return Lazy.range(400).map(function(i) { throw new Error("Test"); }) ``` It doesn't make any difference if I use join either; ``` var...

I'm trying to read line by line very huuuuuuuuuuuge csv file, it have about 500M rows new lazy(fs.createReadStream('Very huuuuuuugeeee csv file')) .lines .forEach(function(row) { console.log(row.toString()) }); And lazy leaking memory...

yield is a reserved keyword in some dialects of JS. Changed it to emitData, but it could be anything.

I wanted to use this library, but was pretty confused by how `head()` works. The tests did not really clarify anything. So, I added tests to document how `head()` works...

When `buffers` is an array of one buffer of zero length (falsey), this reduce operation ends up producing the string "0" in the output buffer. I couldn't find any reason...

Added `delimit(chars)` function to accept any characters to delimit the stream with. Changed `lines` property to use `delimit('\r\n')`. This is useful when you want to break the stream up using...