Skip to content

Commit b161c38

Browse files
committed
Auto-generated commit
1 parent c9949c5 commit b161c38

File tree

19 files changed

+23
-24
lines changed

19 files changed

+23
-24
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -718,6 +718,8 @@ A total of 8 people contributed to this release. Thank you to the following cont
718718

719719
<details>
720720

721+
- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
722+
- [`aad48ea`](https://github.com/stdlib-js/stdlib/commit/aad48eab1f19217854f4ffbfaed2a8be664b0f47) - **chore:** resolve lint errors _(by Philipp Burckhardt)_
721723
- [`5a50038`](https://github.com/stdlib-js/stdlib/commit/5a50038db6a457856adc51d5e6e3fd7161f45085) - **feat:** add `array/base/cuevery-by-right` [(#2802)](https://github.com/stdlib-js/stdlib/pull/2802) _(by HarshaNP, Philipp Burckhardt)_
722724
- [`006e24c`](https://github.com/stdlib-js/stdlib/commit/006e24cbe344a32a48d883dfa9991e7a381a0b98) - **chore:** update package meta data [(#2964)](https://github.com/stdlib-js/stdlib/pull/2964 ) _(by stdlib-bot)_
723725
- [`9835dae`](https://github.com/stdlib-js/stdlib/commit/9835dae5a4dba0aae50d8582b97ad69d17fefe6d) - **feat:** add `array/base/cusome-by` [(#2953)](https://github.com/stdlib-js/stdlib/pull/2953) _(by Aditya Sapra, Philipp Burckhardt)_

base/at5d/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,6 @@ import at5d = require( './index' );
119119
at5d( x, 0 ); // $ExpectError
120120
at5d( x, 0, 0 ); // $ExpectError
121121
at5d( x, 0, 0, 0 ); // $ExpectError
122-
at5d( x, 0, 0, 0, 0, ); // $ExpectError
122+
at5d( x, 0, 0, 0, 0 ); // $ExpectError
123123
at5d( x, 0, 0, 0, 0, 0, 0 ); // $ExpectError
124124
}

base/cuany-by-right/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ function isPositive( value: number ): boolean {
7272
cuanyByRight( x, [], {} ); // $ExpectError
7373
cuanyByRight( x, '', {} ); // $ExpectError
7474
cuanyByRight( x, undefined, {} ); // $ExpectError
75-
7675
}
7776

7877
// The compiler throws an error if the function is provided an unsupported number of arguments...

base/cuany-by/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ interface CuAnyBy {
109109
* var x = [ 0, 0, 0, 1, 0 ];
110110
* var y = [ false, null, false, null, false, null, true, null, true, null ];
111111
*
112-
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );,
112+
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );
113113
* // returns [ false, null, false, null, false, null, true, null, true, null ];
114114
*/
115115
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
@@ -161,7 +161,7 @@ interface CuAnyBy {
161161
* var x = [ 0, 0, 0, 1, 0 ];
162162
* var y = [ false, null, false, null, false, null, true, null, true, null ];
163163
*
164-
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );,
164+
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );
165165
* // returns [ false, null, false, null, false, null, true, null, true, null ];
166166
*/
167167
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;

base/cuany-by/docs/types/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ function isPositive( value: number ): boolean {
7171
cuanyBy( x, [], {} ); // $ExpectError
7272
cuanyBy( x, '', {} ); // $ExpectError
7373
cuanyBy( x, undefined, {} ); // $ExpectError
74-
7574
}
7675

7776
// The compiler throws an error if the function is provided an unsupported number of arguments...

base/cuevery-by/docs/types/index.d.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ interface CuEveryBy {
107107
* var x = [ 1, 1, 0, 0, 0 ];
108108
* var y = [ false, null, false, null, false, null, false, null, false, null ];
109109
*
110-
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );,
110+
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );
111111
* // returns [ true, null, true, null, false, null, false, null, false, null ];
112112
*/
113113
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
@@ -158,11 +158,10 @@ interface CuEveryBy {
158158
* var x = [ 1, 1, 0, 0, 0 ];
159159
* var y = [ false, null, false, null, false, null, false, null, false, null ];
160160
*
161-
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );,
161+
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );
162162
* // returns [ true, null, true, null, false, null, false, null, false, null ];
163163
*/
164164
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
165-
166165
}
167166

168167
/**

base/cuevery/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ interface CuEvery {
5353
* var x = [ true, true, true, false, false ];
5454
* var y = [ false, null, false, null, false, null, false, null, false, null ];
5555
*
56-
* var arr = cuevery.assign( x, y, 2, 0 );,
56+
* var arr = cuevery.assign( x, y, 2, 0 );
5757
* // returns [ true, null, true, null, true, null, false, null, false, null ];
5858
*/
5959
assign<T, U extends Collection<T> | AccessorArrayLike<T>>( x: Collection | AccessorArrayLike<any>, y: U, stride: number, offset: number ): U;

base/cunone-by-right/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ interface CunoneByRight {
107107
* var x = [ 1, 1, 0, 0, 0 ];
108108
* var y = [ false, null, false, null, false, null, false, null, false, null ];
109109
*
110-
* var arr = cunoneByRight.assign( x, y, 2, 0, fcn );,
110+
* var arr = cunoneByRight.assign( x, y, 2, 0, fcn );
111111
* // returns [ true, null, true, null, true, null, false, null, false, null ];
112112
*/
113113
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
@@ -158,7 +158,7 @@ interface CunoneByRight {
158158
* var x = [ 0, 0, 0, 1, 0 ];
159159
* var y = [ false, null, false, null, false, null, false, null, false, null ];
160160
*
161-
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );,
161+
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );
162162
* // returns [ true, null, false, null, false, null, false, null, false, null ]
163163
*/
164164
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;

base/cunone-by-right/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"keywords": [
5252
"stdlib",
5353
"stdtypes",
54-
"utlis",
54+
"utils",
5555
"generic",
5656
"array",
5757
"cumulative",

base/cunone-by/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ interface CuNoneBy {
107107
* var x = [ 0, 0, 0, 1, 0 ];
108108
* var y = [ false, null, false, null, false, null, false, null, false, null ];
109109
*
110-
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );,
110+
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );
111111
* // returns [ true, null, true, null, true, null, false, null, false, null ]
112112
*/
113113
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
@@ -158,7 +158,7 @@ interface CuNoneBy {
158158
* var x = [ 0, 0, 0, 1, 0 ];
159159
* var y = [ false, null, false, null, false, null, false, null, false, null ];
160160
*
161-
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );,
161+
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );
162162
* // returns [ true, null, true, null, true, null, false, null, false, null ]
163163
*/
164164
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;

base/cunone/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ interface cunone {
5353
* var x = [ false, false, false, true, false ];
5454
* var y = [ false, null, false, null, false, null, false, null, false, null ];
5555
*
56-
* var arr = cunone.assign( x, y, 2, 0 );,
56+
* var arr = cunone.assign( x, y, 2, 0 );
5757
* // returns [ true, null, true, null, true, null, false, null, false, null ];
5858
*/
5959
assign<T, U extends Collection<T> | AccessorArrayLike<T>>( x: Collection | AccessorArrayLike<any>, y: U, stride: number, offset: number ): U;

base/cusome-by-right/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ interface CusomeByRight {
109109
* var x = [ 1, 1, 0, 0, 0 ];
110110
* var y = [ false, null, false, null, false, null, false, null, false, null ];
111111
*
112-
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );,
112+
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );
113113
* // returns [ false, null, false, null, false, null, false, null, true, null ];
114114
*/
115115
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, n: number, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
@@ -162,7 +162,7 @@ interface CusomeByRight {
162162
* var x = [ 1, 1, 0, 0, 0 ];
163163
* var y = [ false, null, false, null, false, null, false, null, false, null ];
164164
*
165-
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );,
165+
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );
166166
* // returns [ false, null, false, null, false, null, false, null, true, null ];
167167
*/
168168
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, n: number, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;

base/cusome-by-right/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"keywords": [
5252
"stdlib",
5353
"stdtypes",
54-
"utlis",
54+
"utils",
5555
"generic",
5656
"array",
5757
"cumulative",

base/cusome-by/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ interface CuSomeBy {
109109
* var x = [ 0, 0, 0, 1, 1,];
110110
* var y = [ false, null, false, null, false, null, false, null, false, null ];
111111
*
112-
* var arr = cusomeBy.assign( x, 2, y, 2, 0, isPositive );,
112+
* var arr = cusomeBy.assign( x, 2, y, 2, 0, isPositive );
113113
* // returns [ false, null, false, null, false, null, false, null, true, null ];
114114
*/
115115
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, n: number, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;

base/cusome/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ interface cusome {
5555
* var x = [ false, false, false, true, true ];
5656
* var y = [ false, null, false, null, false, null, false, null, false, null ];
5757
*
58-
* var arr = cusome.assign( x, 2, y, 2, 0 );,
58+
* var arr = cusome.assign( x, 2, y, 2, 0 );
5959
* // returns [ false, null, false, null, false, null, false, null, true, null ];
6060
*/
6161
assign<T, U extends Collection<T> | AccessorArrayLike<T>>( x: Collection | AccessorArrayLike<any>, n: number, y: U, stride: number, offset: number ): U;

base/mskput/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ import mskput = require( './index' );
8787
mskput(); // $ExpectError
8888
mskput( [] ); // $ExpectError
8989
mskput( [], [] ); // $ExpectError
90-
mskput( [], [], [], ); // $ExpectError
90+
mskput( [], [], [] ); // $ExpectError
9191
mskput( [], [], [], 'strict', {} ); // $ExpectError
9292
}

base/place/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ import place = require( './index' );
8787
place(); // $ExpectError
8888
place( [] ); // $ExpectError
8989
place( [], [] ); // $ExpectError
90-
place( [], [], [], ); // $ExpectError
90+
place( [], [], [] ); // $ExpectError
9191
place( [], [], [], 'strict', {} ); // $ExpectError
9292
}

base/put/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ import put = require( './index' );
8686
put(); // $ExpectError
8787
put( [] ); // $ExpectError
8888
put( [], [] ); // $ExpectError
89-
put( [], [], [], ); // $ExpectError
89+
put( [], [], [] ); // $ExpectError
9090
put( [], [], [], 'throw', {} ); // $ExpectError
9191
}

from-iterator/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { TypedIterator as Iter } from '@stdlib/types/iter';
23+
import { TypedIterator as Iter, TypedIterableIterator as IterableIterator } from '@stdlib/types/iter';
2424
import { Collection } from '@stdlib/types/array';
2525

2626
// Define a union type representing both iterable and non-iterable iterators:

0 commit comments

Comments
 (0)