extra-iterable
Advanced tools
Comparing version 3.0.126 to 3.0.127
@@ -734,3 +734,3 @@ /** | ||
/** | ||
* Find indices of an infix. TODO | ||
* Find indices of an infix. | ||
* [📘](https://github.com/nodef/extra-iterable/wiki/searchInfixAll) | ||
@@ -746,3 +746,3 @@ * @param x an iterable | ||
/** | ||
* Find first index of a subsequence. TODO | ||
* Find first index of a subsequence. | ||
* [📘](https://github.com/nodef/extra-iterable/wiki/searchSubsequence) | ||
@@ -749,0 +749,0 @@ * @param x an iterable |
@@ -518,3 +518,3 @@ 'use strict'; | ||
if (Y === 0) { | ||
yield* fromRange(0, Y); | ||
yield* fromRange(0, length(x)); | ||
return; | ||
@@ -526,3 +526,3 @@ } | ||
var u1 = fm(u, ++i, x); | ||
for (var j = J; j > 0; j--) | ||
for (var j = J; j > 0; --j) | ||
m[j] = m[j - 1] && fc(u1, y1[j]) === 0; | ||
@@ -529,0 +529,0 @@ m[0] = fc(u1, y1[0]) === 0; |
{ | ||
"name": "extra-iterable", | ||
"version": "3.0.126", | ||
"version": "3.0.127", | ||
"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
124990