Skip to content

Commit d4f2069

Browse files
committed
Auto-generated commit
1 parent f07ba80 commit d4f2069

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-29)

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
@@ -134,7 +134,7 @@ bool = isComplex128Array( new Uint32Array( 10 ) );
134134
bool = isComplex128Array( new Float32Array( 10 ) );
135135
// returns false
136136

137-
bool = isComplex128Array( new Array( 10 ) );
137+
bool = isComplex128Array( [] );
138138
// returns false
139139

140140
bool = isComplex128Array( {} );

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
@@ -29,6 +29,8 @@ import { Complex128Array } from '@stdlib/types/array';
2929
* @returns boolean indicating whether value is a Complex128Array
3030
*
3131
* @example
32+
* var Complex128Array = require( '@stdlib/array-complex128' );
33+
*
3234
* var bool = isComplex128Array( new Complex128Array( 10 ) );
3335
* // returns true
3436
*

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ bool = isComplex128Array( new Float32Array( 10 ) );
7575
console.log( bool );
7676
// => false
7777

78-
bool = isComplex128Array( new Array( 10 ) );
78+
bool = isComplex128Array( [] );
7979
console.log( bool );
8080
// => false
8181

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-complex128array
2525
*
2626
* @example
27+
* var Complex128Array = require( '@stdlib/array-complex128' );
2728
* var isComplex128Array = require( '@stdlib/assert-is-complex128array' );
2829
*
2930
* var bool = isComplex128Array( new Complex128Array( 10 ) );

lib/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ var constructorName = require( '@stdlib/utils-constructor-name' );
3333
* @returns {boolean} boolean indicating whether value is a Complex128Array
3434
*
3535
* @example
36+
* var Complex128Array = require( '@stdlib/array-complex128' );
37+
*
3638
* var bool = isComplex128Array( new Complex128Array( 10 ) );
3739
* // returns true
3840
*

test/test.js

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

0 commit comments

Comments
 (0)