8000 Auto-generated commit · stdlib-js/assert-is-safe-integer@eaed344 · GitHub
[go: up one dir, main page]

Skip to content

Commit eaed344

Browse files
committed
Auto-generated commit
1 parent f5db514 commit eaed344

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

.npmignore

Lines changed: 2 additions & 1 deletion
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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ Amit Jimiwal <amitjimiwal45@gmail.com>
88
Athan Reines <kgryte@gmail.com>
99
Brendan Graetz <bguiz@users.noreply.github.com>
1010
Bruno Fenzl <brunofenzl@gmail.com>
11+
Chinmay J <86140365+JawHawk@users.noreply.github.com>
1112
Christopher Dambamuromo <chridam@gmail.com>
1213
Dan Rose <danoftheroses@gmail.com>
1314
Daniel Killenberger <daniel.killenberger@gmail.com>
1415
Dominik Moritz <domoritz@gmail.com>
1516
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
1617
Frank Kovacs <fran70kk@gmail.com>
1718
GUNJ JOSHI <gunjjoshi8372@gmail.com>
19+
Golden <103646877+AuenKr@users.noreply.github.com>
1820
Harshita Kalani <harshitakalani02@gmail.com>
1921
James Gelok <jdgelok@gmail.com>
2022
Jaysukh Makvana <jaysukhmakvana2004@gmail.com>
@@ -24,6 +26,7 @@ Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
2426
Joris Labie <joris.labie1@gmail.com>
2527
Justin Dennison <justin1dennison@gmail.com>
2628
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
29+
Khaldon <kahmd1444@gmail.com>
2730
Marcus Fantham <mfantham@users.noreply.github.com>
2831
Matt Cochrane <matthew.cochrane.eng@gmail.com>
2932
Milan Raj <rajsite@users.noreply.github.com>
@@ -32,13 +35,18 @@ Naresh Jagadeesan <naresh.naresh000@gmail.com>
3235
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
3336
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
3437
Philipp Burckhardt <pburckhardt@outlook.com>
38+
Prajwal Kulkarni <prajwalkulkarni76@gmail.com>
3539
Pranav Goswami <goswami.4@iitj.ac.in>
40+
Praneki <97080887+PraneGIT@users.noreply.github.com>
41+
Pratik <97464067+Pratik772846@users.noreply.github.com>
3642
Ricky Reusser <rsreusser@gmail.com>
3743
Robert Gislason <gztown2216@yahoo.com>
3844
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
45+
Rutam <138517416+performant23@users.noreply.github.com>
3946
Ryan Seal <splrk@users.noreply.github.com>
4047
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
4148
Shraddheya Shendre <shendreshraddheya@gmail.com>
49+
Shubham <shubh622005@gmail.com>
4250
Spandan Barve <114365550+marsian83@users.noreply.github.com>
4351
Stephannie Jiménez Gacha <steff456@hotmail.com>
4452
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
251251
[npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-safe-integer.svg
252252
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-safe-integer
253253

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

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

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ interface IsSafeInteger {
4848
* var bool = isSafeInteger( 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 safe integer value.
@@ -64,7 +64,7 @@ interface IsSafeInteger {
6464
* var bool = isSafeInteger.isPrimitive( new Number( -3.0 ) );
6565
* // returns false
6666
*/
67-
isPrimitive( value: any ): value is number;
67+
isPrimitive( value: any ): boolean;
6868

6969

7070
/**
@@ -81,7 +81,7 @@ interface IsSafeInteger {
8181
* var bool = isSafeInteger.isObject( new Number( 3.0 ) );
8282
* // returns true
8383
*/
84-
isObject( value: any ): value is Number;
84+
isObject( value: any ): boolean;
8585
}
8686

8787
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
4848
"istanbul": "^0.4.1",
4949
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
50-
"@stdlib/bench-harness": "^0.2.0"
50+
"@stdlib/bench-harness": "^0.2.1"
5151
},
5252
"engines": {
5353
"node": ">=0.10.0",

0 commit comments

Comments
 (0)
0