Streamjs Versions Save

Lazy Object Streaming Pipeline for JavaScript

1.1.0

9 years ago

This version improves the performance of some combined stream operations. Also skip, limit and peek are no longer stateful operations, so interim results are no longer stored in internal arrays.

1.0.0

9 years ago

First production-ready release of Stream.js with over 400 assertions passing. This version adds support for input strings. Stream(string) streams over all characters of the given string argument.

0.4.1

9 years ago

Fix operation filter when input collection contains null values. FlatMap now behaves like map when function returns no collection.

0.4.0

9 years ago

This release supports infinite streams via Stream.generate and Stream.iterate. Additionally the naming scheme of stream operations has been aligned to match the Java 8 Streams API. For convenience and backward compatibility a few common aliases have been added. See README for details.

0.3.0

9 years ago

Operations like min, max and average wrap result in Optional.

0.2.0

9 years ago

This version adds support for object hash collection inputs and source maps for minified script.

0.1.0

9 years ago

First pre-release of Stream.js. API is in a stabil state but still subject to change.