Skip to content

Commit 79e7cfb

Browse files
committed
Auto-generated commit
1 parent 0807bd8 commit 79e7cfb

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.github/.keepalive

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

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-06-30)
7+
## Unreleased (2025-07-08)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`de93d8f`](https://github.com/stdlib-js/stdlib/commit/de93d8f17831ad02c68e33181fa9226f88e42d29) - **chore:** resolve lint errors and update examples _(by Athan Reines)_
1516
- [`ccf69dc`](https://github.com/stdlib-js/stdlib/commit/ccf69dc0beccc374941e7edfb766a1732d994cbd) - **docs:** fix description _(by Athan Reines)_
1617

1718
</details>

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
@@ -138,7 +138,7 @@ bool = isBooleanArray( new Uint32Array( 10 ) );
138138
bool = isBooleanArray( new Float32Array( 10 ) );
139139
// returns false
140140

141-
bool = isBooleanArray( new Array( 10 ) );
141+
bool = isBooleanArray( [] );
142142
// returns false
143143

144144
bool = isBooleanArray( {} );

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ bool = isBooleanArray( new Float32Array( 10 ) );
8080
console.log( bool );
8181
// => false
8282

83-
bool = isBooleanArray( new Array( 10 ) );
83+
bool = isBooleanArray( [] );
8484
console.log( bool );
8585
// => false
8686

test/test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ tape( 'the function returns `false` if not provided a BooleanArray', function te
6363
[],
6464
{},
6565
function noop() {},
66-
new Array( 10 ),
6766
new Float64Array( 10 ),
6867
new Float32Array( 10 ),
6968
new Uint32Array( 10 ),

0 commit comments

Comments
 (0)