Skip to content

Commit 0efb248

Browse files
committed
Auto-generated commit
1 parent 198da82 commit 0efb248

File tree

10 files changed

+45
-6
lines changed

10 files changed

+45
-6
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-07-08)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`de93d8f`](https://github.com/stdlib-js/stdlib/commit/de93d8f17831ad02c68e33181fa9226f88e42d29) - **chore:** resolve lint errors and update examples _(by Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Athan Reines
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.2">
640

741
## 0.2.2 (2024-07-27)

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Annamalai Prabu <apfossdev@gmail.com>
2727
Anshu Kumar <132515490+anxhukumar@users.noreply.github.com>
2828
Anshu Kumar <contact.anshukumar@protonmail.com>
2929
Anudeep Sanapala <anudeep0306@gmail.com>
30+
Arihant Pal <arihant0pal@gmail.com>
3031
Aryan Bhirud <112156883+AryanBhirud@users.noreply.github.com>
3132
Athan Reines <kgryte@gmail.com>
3233
Ayaka <73595362+USERSATOSHI@users.noreply.github.com>
@@ -198,6 +199,7 @@ Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
198199
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
199200
Yugal Kaushik <yugalkaushik14@gmail.com>
200201
Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com>
202+
deepak427 <62477872+deepak427@users.noreply.github.com>
201203
devshree-bhati <147095250+devshree-bhati@users.noreply.github.com>
202204
ditsu <170345142+ditsus@users.noreply.github.com>
203205
ekambains <bainsinbusiness@gmail.com>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ bool = isInt32Array( new Float32Array( 10 ) );
126126
bool = isInt32Array( new Float64Array( 10 ) );
127127
// returns false
128128

129-
bool = isInt32Array( new Array( 10 ) );
129+
bool = isInt32Array( [] );
130130
// returns false
131131

132132
bool = isInt32Array( {} );

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
* @returns boolean indicating whether value is an Int32Array
2626
*
2727
* @example
28+
* var Int32Array = require( '@stdlib/array-int32' );
29+
*
2830
* var bool = isInt32Array( new Int32Array( 10 ) );
2931
* // returns true
3032
*

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ bool = isInt32Array( new Float64Array( 10 ) );
6565
console.log( bool );
6666
// => false
6767

68-
bool = isInt32Array( new Array( 10 ) );
68+
bool = isInt32Array( [] );
6969
console.log( bool );
7070
// => false
7171

lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* @module @stdlib/assert-is-int32array
2525
*
2626
* @example
27+
* var Int32Array = require( '@stdlib/array-int32' );
2728
* var isInt32Array = require( '@stdlib/assert-is-int32array' );
2829
*
2930
* var bool = isInt32Array( new Int32Array( 10 ) );

lib/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ var hasInt32Array = ( typeof Int32Array === 'function' ); // eslint-disable-line
3737
* @returns {boolean} boolean indicating whether value is an Int32Array
3838
*
3939
* @example
40+
* var Int32Array = require( '@stdlib/array-int32' );
41+
*
4042
* var bool = isInt32Array( new Int32Array( 10 ) );
4143
* // returns true
4244
*

test/test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ tape( 'the function returns `false` if not provided an Int32Array', function tes
6060
[],
6161
{},
6262
function noop() {},
63-
new Array( 10 ),
6463
new Float64Array( 10 ),
6564
new Float32Array( 10 ),
6665
new Uint32Array( 10 ),

0 commit comments

Comments
 (0)