8000 Auto-generated commit · stdlib-js/array-to-view-iterator@10722ea · GitHub
[go: up one dir, main page]

Skip to content

Commit 10722ea

Browse files
committed
Auto-generated commit
1 parent f6c1d16 commit 10722ea

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary;
9494
* var bool = iter.next().done;
9595
* // returns false
9696
*/
97-
declare function arrayview2iterator( src: ArrayLike<any>, mapFcn?: MapFunction, thisArg?: any ): Iterator; // tslint:disable-line:max-line-length
97+
declare function arrayview2iterator( src: ArrayLike<any>, mapFcn?: MapFunction, thisArg?: any ): Iterator;
9898

9999
/**
100100
* Returns an iterator which iterates over each element in an array-like object view.
@@ -117,7 +117,7 @@ declare function arrayview2iterator( src: ArrayLike<any>, mapFcn?: MapFunction,
117117
* var bool = iter.next().done;
118118
* // returns false
119119
*/
120-
declare function arrayview2iterator( src: ArrayLike<any>, begin: number, mapFcn?: MapFunction, thisArg?: any ): Iterator; // tslint:disable-line:max-line-length
120+
declare function arrayview2iterator( src: ArrayLike<any>, begin: number, mapFcn?: MapFunction, thisArg?: any ): Iterator;
121121

122122
/**
123123
* Returns an iterator which iterates over each element in an array-like object view.
@@ -141,7 +141,7 @@ declare function arrayview2iterator( src: ArrayLike<any>, begin: number, mapFcn?
141141
* var bool = iter.next().done;
142142
* // returns true
143143
*/
144-
declare function arrayview2iterator( src: ArrayLike<any>, begin: number, end: number, mapFcn?: MapFunction, thisArg?: any ): Iterator; // tslint:disable-line:max-line-length
144+
declare function arrayview2iterator( src: ArrayLike<any>, begin: number, end: number, mapFcn?: MapFunction, thisArg?: any ): Iterator;
145145

146146

147147
// EXPORTS //

0 commit comments

Comments
 (0)
0