Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 3, 2023
1 parent d72f749 commit c6e3dfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

6 changes: 3 additions & 3 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ type Ternary = ( value: any, index: number, n: number ) => any;
* @param src - source array-like object
* @returns iterator value
*/
type Quaternary = ( value: any, index: number, n: number, src: ArrayLike<any> ) => any; // tslint-disable-line max-line-length
type Quaternary = ( value: any, index: number, n: number, src: ArrayLike<any> ) => any;

/**
* Map function invoked for each iterated value.
Expand Down Expand Up @@ -120,7 +120,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary | Quaternary;
*
* // ...
*/
declare function circarray2iterator( src: ArrayLike<any>, mapFcn?: MapFunction, thisArg?: any ): Iterator; // tslint:disable-line:max-line-length
declare function circarray2iterator( src: ArrayLike<any>, mapFcn?: MapFunction, thisArg?: any ): Iterator;

/**
* Returns an iterator which repeatedly iterates over each element in an array-like object.
Expand Down Expand Up @@ -150,7 +150,7 @@ declare function circarray2iterator( src: ArrayLike<any>, mapFcn?: MapFunction,
* v = it.next().value;
* // returns 2
*/
declare function circarray2iterator( src: ArrayLike<any>, options: Options, mapFcn?: MapFunction, thisArg?: any ): Iterator; // tslint:disable-line:max-line-length
declare function circarray2iterator( src: ArrayLike<any>, options: Options, mapFcn?: MapFunction, thisArg?: any ): Iterator;


// EXPORTS //
Expand Down

0 comments on commit c6e3dfc

Please sign in to comment.