From c6e3dfcd12c33b20a2cecb8b5d5a8b9b5a6dff3e Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Fri, 3 Nov 2023 07:48:52 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 - docs/types/index.d.ts | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive deleted file mode 100644 index b725bce..0000000 --- a/.github/.keepalive +++ /dev/null @@ -1 +0,0 @@ -2023-11-01T05:48:39.616Z diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts index 3cdde1a..56bdb3f 100644 --- a/docs/types/index.d.ts +++ b/docs/types/index.d.ts @@ -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; // tslint-disable-line max-line-length +type Quaternary = ( value: any, index: number, n: number, src: ArrayLike ) => any; /** * Map function invoked for each iterated value. @@ -120,7 +120,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary | Quaternary; * * // ... */ -declare function circarray2iterator( src: ArrayLike, mapFcn?: MapFunction, thisArg?: any ): Iterator; // tslint:disable-line:max-line-length +declare function circarray2iterator( src: ArrayLike, mapFcn?: MapFunction, thisArg?: any ): Iterator; /** * Returns an iterator which repeatedly iterates over each element in an array-like object. @@ -150,7 +150,7 @@ declare function circarray2iterator( src: ArrayLike, mapFcn?: MapFunction, * v = it.next().value; * // returns 2 */ -declare function circarray2iterator( src: ArrayLike, options: Options, mapFcn?: MapFunction, thisArg?: any ): Iterator; // tslint:disable-line:max-line-length +declare function circarray2iterator( src: ArrayLike, options: Options, mapFcn?: MapFunction, thisArg?: any ): Iterator; // EXPORTS //