Skip to content

Commit 8ef0794

Browse files
committed
Auto-generated commit
1 parent c3476d0 commit 8ef0794

File tree

5 files changed

+40
-10
lines changed

5 files changed

+40
-10
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-05-19)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`b3a13ca`](https://github.com/stdlib-js/stdlib/commit/b3a13ca6c8f0d98a616a2113c51e8dafd7aef906) - **refactor:** consolidate into a single line _(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)

dist/index.js

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

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.

lib/main.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ var hasSameValues = require( '@stdlib/array-base-assert-has-same-values' );
5252
* // returns false
5353
*/
5454
function isSameComplex128Array( v1, v2 ) {
55-
if ( isComplex128Array( v1 ) && isComplex128Array( v2 ) ) {
56-
return hasSameValues( v1, v2 );
57-
}
58-
return false;
55+
return ( isComplex128Array( v1 ) && isComplex128Array( v2 ) && hasSameValues( v1, v2 ) ); // eslint-disable-line max-len
5956
}
6057

6158

0 commit comments

Comments
 (0)