typo fix...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2021-06-17 20:15:29 +03:00
parent 923bc1a094
commit 0feb5c4339
2 changed files with 2 additions and 2 deletions

View File

@ -279,7 +279,7 @@ object.Mixin('GeneratorProtoMixin', 'soft', {
// NOTE: this is different from Array's .slice(..) in that it does not
// support negative indexes -- this is done because there is no way
// to judge the length of a generator until it is fully done...
slice: function*(from=0, to=Infity){
slice: function*(from=0, to=Infinity){
// sanity check...
if(from < 0 || to < 0){
throw new Error('.slice(..): '

View File

@ -1,6 +1,6 @@
{
"name": "ig-types",
"version": "6.9.0",
"version": "6.9.1",
"description": "Generic JavaScript types and type extensions...",
"main": "main.js",
"scripts": {