extra-iterable
Advanced tools
Comparing version 3.0.121 to 3.0.122
@@ -964,3 +964,3 @@ /** | ||
/** | ||
* Copy part of iterable to another. TODO | ||
* Copy part of iterable to another. | ||
* [📘](https://github.com/nodef/extra-iterable/wiki/copy) | ||
@@ -972,3 +972,3 @@ * @param x target iterable | ||
* @param I read end index [END] | ||
* @returns TODO | ||
* @returns x[0..j] ⧺ y[i..I] ⧺ x[j+I-i..] | ||
* */ | ||
@@ -978,3 +978,3 @@ | ||
/** | ||
* Copy part of iterable within. TODO | ||
* Copy part of iterable within. | ||
* [📘](https://github.com/nodef/extra-iterable/wiki/copyWithin) | ||
@@ -985,3 +985,3 @@ * @param x an iterable | ||
* @param I read end index [END] | ||
* @returns TODO | ||
* @returns x[0..j] ⧺ x[i..I] ⧺ x[j+I-i..] | ||
* */ | ||
@@ -988,0 +988,0 @@ |
@@ -774,3 +774,3 @@ 'use strict'; | ||
for (; ++k < j;) | ||
yield undefined; | ||
yield; | ||
yield* slice(y, i, I); | ||
@@ -777,0 +777,0 @@ } |
{ | ||
"name": "extra-iterable", | ||
"version": "3.0.121", | ||
"version": "3.0.122", | ||
"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
124841