extra-iterable
Advanced tools
Comparing version 3.0.118 to 3.0.119
@@ -1094,5 +1094,5 @@ /** | ||
* @param x an iterable | ||
* @param n chunk size (1) | ||
* @param s chunk step (n) | ||
* @returns TODO | ||
* @param n chunk size [1] | ||
* @param s chunk step [n] | ||
* @returns x[0..n], x[s..s+n], x[2s..2s+n], ... | ||
* */ | ||
@@ -1099,0 +1099,0 @@ |
@@ -932,3 +932,5 @@ 'use strict'; | ||
continue; | ||
yield a; | ||
do { | ||
yield a; | ||
} while (s <= 0); | ||
a = a.slice(s); | ||
@@ -935,0 +937,0 @@ m = a.length; |
{ | ||
"name": "extra-iterable", | ||
"version": "3.0.118", | ||
"version": "3.0.119", | ||
"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
124688
3860