Skip to content

Commit 174365e

Browse files
committed
Auto-generated commit
1 parent 08e1d76 commit 174365e

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.npmignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ branches.md
2929
.postinstall.json
3030
Makefile
3131

32-
# Ignore `binding.gyp` file to avoid compilation of native addon when installing package:
32+
# Ignore files to avoid compilation of native addon when installing package:
3333
binding.gyp
34+
include.gypi
3435

3536
# Directories #
3637
###############

CONTRIBUTORS

+8
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ Amit Jimiwal <[email protected]>
88
Athan Reines <[email protected]>
99
Brendan Graetz <[email protected]>
1010
Bruno Fenzl <[email protected]>
11+
Chinmay J <[email protected]>
1112
Christopher Dambamuromo <[email protected]>
1213
1314
Daniel Killenberger <[email protected]>
1415
Dominik Moritz <[email protected]>
1516
Dorrin Sotoudeh <[email protected]>
1617
Frank Kovacs <[email protected]>
1718
GUNJ JOSHI <[email protected]>
19+
1820
Harshita Kalani <[email protected]>
1921
James Gelok <[email protected]>
2022
Jaysukh Makvana <[email protected]>
@@ -24,6 +26,7 @@ Jordan Gallivan <[email protected]>
2426
Joris Labie <[email protected]>
2527
Justin Dennison <[email protected]>
2628
Karthik Prakash <[email protected]>
29+
2730
Marcus Fantham <[email protected]>
2831
Matt Cochrane <[email protected]>
2932
Milan Raj <[email protected]>
@@ -32,13 +35,18 @@ Naresh Jagadeesan <[email protected]>
3235
Nithin Katta <[email protected]>
3336
Ognjen Jevremović <[email protected]>
3437
Philipp Burckhardt <[email protected]>
38+
Prajwal Kulkarni <[email protected]>
3539
Pranav Goswami <[email protected]>
40+
41+
3642
Ricky Reusser <[email protected]>
3743
Robert Gislason <[email protected]>
3844
Roman Stetsyk <[email protected]>
45+
3946
Ryan Seal <[email protected]>
4047
Seyyed Parsa Neshaei <[email protected]>
4148
Shraddheya Shendre <[email protected]>
49+
4250
Spandan Barve <[email protected]>
4351
Stephannie Jiménez Gacha <[email protected]>
4452
Yernar Yergaziyev <[email protected]>

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
215215
[npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-integer.svg
216216
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-integer
217217

218-
[test-image]: https://github.com/stdlib-js/assert-is-integer/actions/workflows/test.yml/badge.svg?branch=v0.2.1
219-
[test-url]: https://github.com/stdlib-js/assert-is-integer/actions/workflows/test.yml?query=branch:v0.2.1
218+
[test-image]: https://github.com/stdlib-js/assert-is-integer/actions/workflows/test.yml/badge.svg?branch=main
219+
[test-url]: https://github.com/stdlib-js/assert-is-integer/actions/workflows/test.yml?query=branch:main
220220

221221
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-integer/main.svg
222222
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-integer?branch=main

docs/types/index.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ interface IsInteger {
4444
* var bool = isInteger( null );
4545
* // returns false
4646
*/
47-
( value: any ): value is number | Number;
47+
( value: any ): boolean;
4848

4949
/**
5050
* Tests if a value is a number primitive having an integer value.
@@ -60,7 +60,7 @@ interface IsInteger {
6060
* var bool = isInteger.isPrimitive( new Number( -3.0 ) );
6161
* // returns false
6262
*/
63-
isPrimitive( value: any ): value is number;
63+
isPrimitive( value: any ): boolean;
6464

6565
/**
6666
* Tests if a value is a number object having an integer value.
@@ -76,7 +76,7 @@ interface IsInteger {
7676
* var bool = isInteger.isObject( new Number( 3.0 ) );
7777
* // returns true
7878
*/
79-
isObject( value: any ): value is Number;
79+
isObject( value: any ): boolean;
8080
}
8181

8282
/**

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@stdlib/assert-is-number": "^0.2.1",
4141
"@stdlib/constants-float64-ninf": "^0.2.1",
4242
"@stdlib/constants-float64-pinf": "^0.2.1",
43-
"@stdlib/math-base-assert-is-integer": "^0.2.1",
43+
"@stdlib/math-base-assert-is-integer": "^0.2.2",
4444
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1"
4545
},
4646
"devDependencies": {
@@ -49,7 +49,7 @@
4949
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5050
"istanbul": "^0.4.1",
5151
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
52-
"@stdlib/bench-harness": "^0.2.0"
52+
"@stdlib/bench-harness": "^0.2.1"
5353
},
5454
"engines": {
5555
"node": ">=0.10.0",

0 commit comments

Comments
 (0)