New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ez-streams

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ez-streams - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

lib/devices/queue._js

4

API.md

@@ -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

17

lib/reader.md

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc