line-async-iterator
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -21,3 +21,7 @@ const createStreamIterator = require('stream-async-iterator'); | ||
return { next }; | ||
const it = { next }; | ||
if (Symbol.asyncIterator) { | ||
it[Symbol.asyncIterator] = () => it; | ||
} | ||
return it; | ||
} |
{ | ||
"name": "line-async-iterator", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "Async Iterator for every line of a Readable Stream", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
993
23