Comparing version 1.21.2 to 1.21.3
@@ -427,3 +427,3 @@ "use strict"; | ||
stream._read = size => { | ||
while (size-- > 0) { | ||
while (--size >= 0) { | ||
const { | ||
@@ -1059,3 +1059,3 @@ done, | ||
const iterable = this[ITERATOR]; | ||
while (size-- > 0) { | ||
while (--size >= 0) { | ||
const { | ||
@@ -1062,0 +1062,0 @@ done, |
{ | ||
"name": "n3", | ||
"version": "1.21.2", | ||
"version": "1.21.3", | ||
"description": "Lightning fast, asynchronous, streaming Turtle / N3 / RDF library.", | ||
@@ -5,0 +5,0 @@ "author": "Ruben Verborgh <ruben.verborgh@gmail.com>", |
@@ -433,3 +433,3 @@ // **N3Store** objects store N3 quads by graph in memory. | ||
stream._read = size => { | ||
while (size-- > 0) { | ||
while (--size >= 0) { | ||
const { done, value } = iterable.next(); | ||
@@ -1101,3 +1101,3 @@ if (done) { | ||
const iterable = this[ITERATOR]; | ||
while (size-- > 0) { | ||
while (--size >= 0) { | ||
const { done, value } = iterable.next(); | ||
@@ -1104,0 +1104,0 @@ if (done) { |
Sorry, the diff of this file is too big to display
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
589237