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 12, 2023
1 parent a416937 commit 0d8ba7b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

2 changes: 1 addition & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Ognjen Jevremović <[email protected]>
Philipp Burckhardt <[email protected]>
Pranav Goswami <[email protected]>
Ricky Reusser <[email protected]>
Robert Gislason <[email protected]>
Roman Stetsyk <[email protected]>
Ryan Seal <[email protected]>
Seyyed Parsa Neshaei <[email protected]>
Expand All @@ -37,4 +38,3 @@ Stephannie Jiménez Gacha <[email protected]>
Yernar Yergaziyev <[email protected]>
orimiles5 <[email protected]>
rei2hu <[email protected]>
Robert Gislason <[email protected]>
4 changes: 2 additions & 2 deletions docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import isIntegerArray = require( './index' );

// Attached to main export is a `primitives` method which returns a boolean...
{
// tslint:disable-next-line:no-construct
// eslint-disable-next-line no-new-wrappers
isIntegerArray.primitives( [ new Number( 3 ) ] ); // $ExpectType boolean
isIntegerArray.primitives( [ 3 ] ); // $ExpectType boolean
}
Expand All @@ -48,7 +48,7 @@ import isIntegerArray = require( './index' );

// Attached to main export is an `objects` method which returns a boolean...
{
// tslint:disable-next-line:no-construct
// eslint-disable-next-line no-new-wrappers
isIntegerArray.objects( [ new Number( -2 ) ] ); // $ExpectType boolean
isIntegerArray.objects( [ -2 ] ); // $ExpectType boolean
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"devDependencies": {
"@stdlib/assert-is-boolean": "^0.1.1",
"@stdlib/bench": "^0.1.0",
"@stdlib/bench": "^0.2.0",
"@stdlib/math-base-special-pow": "^0.1.0",
"@stdlib/number-ctor": "^0.1.1",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
Expand Down

0 comments on commit 0d8ba7b

Please sign in to comment.