pull-stream
Advanced tools
Comparing version 3.4.4 to 3.4.5
{ | ||
"name": "pull-stream", | ||
"description": "minimal pull stream", | ||
"version": "3.4.4", | ||
"version": "3.4.5", | ||
"homepage": "https://pull-stream.github.io", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -18,5 +18,7 @@ 'use strict' | ||
return abortCb(cb, abort, onAbort) | ||
cb(i >= array.length || null, array[i++]) | ||
if(i >= array.length) | ||
cb(true) | ||
else | ||
cb(null, array[i++]) | ||
} | ||
} | ||
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
64643
1371