callbag-from-iter
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -16,3 +16,6 @@ const fromIter = iter => (start, sink) => { | ||
res = iterator.next(); | ||
if (res.done) sink(2); | ||
if (res.done) { | ||
sink(2); | ||
break; | ||
} | ||
else sink(1, res.value); | ||
@@ -19,0 +22,0 @@ } |
{ | ||
"name": "callbag-from-iter", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Convert an iterable or iterator to a callbag pullable source", | ||
@@ -5,0 +5,0 @@ "repository": { |
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
6201
6
148