Skip to content

Commit 0191a51

Browse files
committed
Auto-generated commit
1 parent 2c1125b commit 0191a51

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
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-nonpositive-integer.svg
216216
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-nonpositive-integer
217217

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

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

docs/types/index.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ interface IsNonPositiveInteger {
4848
* var bool = isNonPositiveInteger( null );
4949
* // returns false
5050
*/
51-
( value: any ): value is number | Number;
51+
( value: any ): boolean;
5252

5353
/**
5454
* Tests if a value is a number primitive having a nonpositive integer value.
@@ -64,7 +64,7 @@ interface IsNonPositiveInteger {
6464
* var bool = isNonPositiveInteger.isPrimitive( new Number( -3.0 ) );
6565
* // returns false
6666
*/
67-
isPrimitive( value: any ): value is number;
67+
isPrimitive( value: any ): boolean;
6868

6969
/**
7070
* Tests if a value is a number object having a nonpositive integer value.
@@ -80,7 +80,7 @@ interface IsNonPositiveInteger {
8080
* var bool = isNonPositiveInteger.isObject( new Number( -3.0 ) );
8181
* // returns true
8282
*/
83-
isObject( value: any ): value is Number;
83+
isObject( value: any ): boolean;
8484
}
8585

8686
/**

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
4747
"istanbul": "^0.4.1",
4848
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
49-
"@stdlib/bench-harness": "^0.2.0"
49+
"@stdlib/bench-harness": "^0.2.1"
5050
},
5151
"engines": {
5252
"node": ">=0.10.0",

0 commit comments

Comments
 (0)