extra-iterable
Advanced tools
Comparing version 3.0.124 to 3.0.125
12
index.js
@@ -537,7 +537,7 @@ 'use strict'; | ||
var iy = y[Symbol.iterator](); | ||
var { value, done } = iy.next(); | ||
if (done) | ||
var b = iy.next(); | ||
if (b.done) | ||
return 0; | ||
var i = -1, j = -1, a = -1; | ||
var v1 = fm(value, ++j, y); | ||
var v1 = fm(b.value, ++j, y); | ||
for (var u of x) { | ||
@@ -549,6 +549,6 @@ var u1 = fm(u, ++i, x); | ||
a = i; | ||
var { value, done } = iy.next(); | ||
if (done) | ||
var b = iy.next(); | ||
if (b.done) | ||
return a; | ||
v1 = fm(value, ++j, y); | ||
v1 = fm(b.value, ++j, y); | ||
} | ||
@@ -555,0 +555,0 @@ return -1; |
{ | ||
"name": "extra-iterable", | ||
"version": "3.0.124", | ||
"version": "3.0.125", | ||
"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
124778