Socket
Socket
Sign inDemoInstall

jducers

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jducers - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

2

package.json
{
"name": "jducers",
"version": "0.1.1",
"version": "0.1.2",
"description": "A js transducers-like implementation using generators",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -66,3 +66,3 @@ # jducers

## async
Async's jducers helpers (useful for async iterables and concurrent iterations):
Async's jducers helpers (useful for async iterables and concurrent async iterations):

@@ -112,3 +112,3 @@ ```js

jducer = pipe(asyncIsOddFilter, asyncDoubleMap, asyncSumReduce);
res = run(jducer);;
res = run(jducer);
res.then(x => console.log(x)); // 200

@@ -123,3 +123,3 @@

jducer = pipe(observer, asyncDoubleMap, observer, asyncSumReduce);
// we will se each value before and after the double mapper function
// we will see each value before and after the double mapper function
// 1 2 2 4 3 6 4 8 5 10 6 12 ...

@@ -137,5 +137,5 @@ res = run(jducer);

## License
## license
MIT
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