Comparing version 0.1.1 to 0.1.2
{ | ||
"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 | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10950