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 86902af commit 9d3d94c
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

2 changes: 1 addition & 1 deletion contains/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import { ArrayLike } from '@stdlib/types/array';
* var bool = contains( 'Hidden Treasures', '' );
* // returns true
*/
declare function contains( val: ArrayLike<any>, searchValue: any, position?: number ): boolean; // tslint:disable-line:max-line-length
declare function contains( val: ArrayLike<any>, searchValue: any, position?: number ): boolean;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion is-between-array/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type Comparison = 'open' | 'closed';
* var bool = isBetweenArray( arr, 3.0, 4.0, 'closed', 'open' );
* // returns false
*/
declare function isBetweenArray( value: any, a: any, b: any, left?: Comparison, right?: Comparison ): value is ArrayLike<number>; // tslint-disable-line max-line-length
declare function isBetweenArray( value: any, a: any, b: any, left?: Comparison, right?: Comparison ): value is ArrayLike<number>;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion is-between/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type Comparison = 'open' | 'closed';
* var bool = isBetween( 3.14, 3.0, 3.14, 'closed', 'open' );
* // returns false
*/
declare function isBetween( value: any, a: any, b: any, left?: Comparison, right?: Comparison ): value is number; // tslint-disable-line max-line-length
declare function isBetween( value: any, a: any, b: any, left?: Comparison, right?: Comparison ): value is number;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion is-boxed-primitive/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
* var bool = isBoxedPrimitive( Symbol( 'beep' ) );
* // returns false
*/
declare function isBoxedPrimitive( value: any ): value is String | Number | Boolean | Symbol; // tslint:disable-line:max-line-length
declare function isBoxedPrimitive( value: any ): value is String | Number | Boolean | Symbol;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion is-complex-typed-array/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { Complex64Array, Complex128Array } from '@stdlib/types/array';
* var bool = isComplexTypedArray( new Complex128Array( 10 ) );
* // returns true
*/
declare function isComplexTypedArray( value: any ): value is Complex64Array | Complex128Array; // tslint-disable-line max-line-length
declare function isComplexTypedArray( value: any ): value is Complex64Array | Complex128Array;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion is-nonconfigurable-property-in/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* bool = isNonConfigurablePropertyIn( obj, 'beep' );
* // returns true
*/
declare function isNonConfigurablePropertyIn( value: any, property: any ): boolean; // tslint:disable-line:max-line-length
declare function isNonConfigurablePropertyIn( value: any, property: any ): boolean;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion is-nonconfigurable-property/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* bool = isNonConfigurableProperty( obj, 'beep' );
* // returns true
*/
declare function isNonConfigurableProperty( value: any, property: any ): boolean; // tslint:disable-line:max-line-length
declare function isNonConfigurableProperty( value: any, property: any ): boolean;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion is-nonenumerable-property-in/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* bool = isNonEnumerablePropertyIn( obj, 'beep' );
* // returns true
*/
declare function isNonEnumerablePropertyIn( value: any, property: any ): boolean; // tslint:disable-line:max-line-length
declare function isNonEnumerablePropertyIn( value: any, property: any ): boolean;


// EXPORTS //
Expand Down

0 comments on commit 9d3d94c

Please sign in to comment.