extra-iterable
Advanced tools
Comparing version 3.0.105 to 3.0.106
10
index.js
@@ -1046,3 +1046,3 @@ 'use strict'; | ||
var ix = [], ax = []; | ||
for (var n = 0, i = 0; n < X; ++n) { | ||
for (var i = 0, n = 0; n < X; ++n) { | ||
ix[i] = xs[i][Symbol.iterator](); | ||
@@ -1054,5 +1054,5 @@ ax[i] = ix[i].next(); | ||
while (i > 0) { | ||
var vs = ax.map(o => o.value); | ||
var j = minEntry(vs, fc, fm)[0]; | ||
yield vs[j]; | ||
var as = ax.map(a => a.value); | ||
var j = minEntry(as, fc, fm)[0]; | ||
yield as[j]; | ||
ax[j] = ix[j].next(); | ||
@@ -1063,3 +1063,3 @@ if (!ax[j].done) | ||
ax.splice(j, 1); | ||
i--; | ||
--i; | ||
} | ||
@@ -1066,0 +1066,0 @@ } |
{ | ||
"name": "extra-iterable", | ||
"version": "3.0.105", | ||
"version": "3.0.106", | ||
"description": "An iterable is a sequence of values.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
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