3.0.5 • Published 8 years ago

linq-iterator v3.0.5

Weekly downloads
53
License
MIT
Repository
github
Last release
8 years ago

linq-iterator Travis CI

everything in npm:linq but with iterator support

that is to say:

for(var x of linq.from([1,2,3]).select(y => y + 1)) {
  console.log(x);
}

now works

also a small feature which I find handy:

linq.extendArray();

// now you don't need linq.from at all
for(var x of [1,2,3].select(y => y + 1)) {
  console.log(x);
}