ez-streams
Advanced tools
Comparing version 0.1.5 to 0.1.6
@@ -31,2 +31,4 @@ # ez-streams | ||
EZ wrappers for oracle | ||
* [ez-streams/lib/devices/queue](lib/devices/queue.md) | ||
Queue device | ||
* [ez-streams/lib/devices/sqlserver](lib/devices/sqlserver.md) | ||
@@ -44,2 +46,4 @@ EZ wrappers for oracle | ||
Encoding mappers | ||
* [ez-streams/lib/mappers/json](lib/mappers/json.md) | ||
JSON mappers | ||
* [ez-streams/lib/reader](lib/reader.md) | ||
@@ -46,0 +50,0 @@ EZ Streams core reader API |
@@ -18,3 +18,3 @@ ## EZ Streams core reader API | ||
The `fn` function is called as `fn(_, elt, i)`. | ||
Returns another stream on which other operations may be chained. | ||
Returns another reader on which other operations may be chained. | ||
* `result = reader.every(_, fn, thisObj)` | ||
@@ -38,2 +38,5 @@ Similar to `every` on arrays. | ||
Returns the writer for chaining. | ||
* `reader = reader.tee(_, writer)` | ||
Branches another writer on the chain`. | ||
Returns another reader on which other operations may be chained. | ||
* `result = reader.toArray(_)` | ||
@@ -48,11 +51,11 @@ Reads all entries and returns them to an array. | ||
and writer is a writer which is piped into the next element of the chain. | ||
Returns another stream on which other operations may be chained. | ||
Returns another reader on which other operations may be chained. | ||
* `result = reader.filter(fn, thisObj)` | ||
Similar to `filter` on arrays. | ||
The `fn` function is called as `fn(_, elt, i)`. | ||
Returns another stream on which other operations may be chained. | ||
Returns another reader on which other operations may be chained. | ||
* `result = reader.until(fn, testVal, thisObj)` | ||
Cuts the stream by when the `fn` condition becomes true. | ||
The `fn` function is called as `fn(_, elt, i)`. | ||
Returns another stream on which other operations may be chained. | ||
Returns another reader on which other operations may be chained. | ||
* `result = reader.while(fn, testVal, thisObj)` | ||
@@ -63,9 +66,9 @@ Cuts the stream by when the `fn` condition becomes false. | ||
The `fn` function is called as `fn(_, elt, i)`. | ||
Returns another stream on which other operations may be chained. | ||
Returns another reader on which other operations may be chained. | ||
* `result = reader.limit(count)` | ||
Limits the stream to produce `count` results. | ||
Returns another stream on which other operations may be chained. | ||
Returns another reader on which other operations may be chained. | ||
* `result = reader.skip(count)` | ||
Skips the first `count` entries of the reader. | ||
Returns another stream on which other operations may be chained. | ||
Returns another reader on which other operations may be chained. | ||
* `group = reader.fork(consumers)` | ||
@@ -72,0 +75,0 @@ Forks the steam and passes the values to a set of consumers, as if each consumer |
{ | ||
"name": "ez-streams", | ||
"description": "EZ streams for node.js", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"repository": { | ||
@@ -13,3 +13,3 @@ "type": "git", | ||
"dependencies": { | ||
"streamline": "^0.10.14", | ||
"streamline": "^0.10.15", | ||
"streamline-streams": "^0.1.5" | ||
@@ -16,0 +16,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
191979
89
Updatedstreamline@^0.10.15