Skip to content

Commit e9bb381

Browse files
committed
Auto-generated commit
1 parent af144ce commit e9bb381

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@
111111

112112
### Closed Issues
113113

114-
A total of 13 issues were closed in this release:
114+
A total of 14 issues were closed in this release:
115115

116-
[#5814](https://github.com/stdlib-js/stdlib/issues/5814), [#6901](https://github.com/stdlib-js/stdlib/issues/6901), [#6925](https://github.com/stdlib-js/stdlib/issues/6925), [#7084](https://github.com/stdlib-js/stdlib/issues/7084), [#7107](https://github.com/stdlib-js/stdlib/issues/7107), [#7199](https://github.com/stdlib-js/stdlib/issues/7199), [#8013](https://github.com/stdlib-js/stdlib/issues/8013), [#8043](https://github.com/stdlib-js/stdlib/issues/8043), [#8050](https://github.com/stdlib-js/stdlib/issues/8050), [#8082](https://github.com/stdlib-js/stdlib/issues/8082), [#8088](https://github.com/stdlib-js/stdlib/issues/8088), [#8129](https://github.com/stdlib-js/stdlib/issues/8129), [#8135](https://github.com/stdlib-js/stdlib/issues/8135)
116+
[#5814](https://github.com/stdlib-js/stdlib/issues/5814), [#6901](https://github.com/stdlib-js/stdlib/issues/6901), [#6925](https://github.com/stdlib-js/stdlib/issues/6925), [#7084](https://github.com/stdlib-js/stdlib/issues/7084), [#7107](https://github.com/stdlib-js/stdlib/issues/7107), [#7199](https://github.com/stdlib-js/stdlib/issues/7199), [#8013](https://github.com/stdlib-js/stdlib/issues/8013), [#8043](https://github.com/stdlib-js/stdlib/issues/8043), [#8050](https://github.com/stdlib-js/stdlib/issues/8050), [#8082](https://github.com/stdlib-js/stdlib/issues/8082), [#8088](https://github.com/stdlib-js/stdlib/issues/8088), [#8114](https://github.com/stdlib-js/stdlib/issues/8114), [#8129](https://github.com/stdlib-js/stdlib/issues/8129), [#8135](https://github.com/stdlib-js/stdlib/issues/8135)
117117

118118
</section>
119119

@@ -125,6 +125,7 @@ A total of 13 issues were closed in this release:
125125

126126
<details>
127127

128+
- [`91b52d8`](https://github.com/stdlib-js/stdlib/commit/91b52d8c048d74c284478f4790690b53885cd65c) - **chore:** fix JavaScript lint errors [(#8119)](https://github.com/stdlib-js/stdlib/pull/8119) _(by Prajjwal Bajpai, Athan Reines)_
128129
- [`e7bd1d0`](https://github.com/stdlib-js/stdlib/commit/e7bd1d04143a9e72e40a3cf8bf7daa17e4ad3620) - **style:** re-enable lint rule [(#8138)](https://github.com/stdlib-js/stdlib/pull/8138) _(by Zuhair Ahmad)_
129130
- [`4dba8a6`](https://github.com/stdlib-js/stdlib/commit/4dba8a659480c7c39382084ba3bb7fdace936609) - **chore:** fix JavaScript lint errors [(#8134)](https://github.com/stdlib-js/stdlib/pull/8134) _(by Payal Goswami, Athan Reines)_
130131
- [`1cfd7f2`](https://github.com/stdlib-js/stdlib/commit/1cfd7f22c3c5a1565ca7b5c34189102a93c1a28c) - **feat:** update `assert` TypeScript declarations _(by Philipp Burckhardt)_
@@ -261,7 +262,7 @@ A total of 13 issues were closed in this release:
261262

262263
### Contributors
263264

264-
A total of 15 people contributed to this release. Thank you to the following contributors:
265+
A total of 16 people contributed to this release. Thank you to the following contributors:
265266

266267
- Anshu Kumar
267268
- Athan Reines
@@ -272,6 +273,7 @@ A total of 15 people contributed to this release. Thank you to the following con
272273
- Lalit Narayan Yadav
273274
- Payal Goswami
274275
- Philipp Burckhardt
276+
- Prajjwal Bajpai
275277
- Seth-Banker
276278
- Shabareesh Shetty
277279
- Tushar Bhardwaj

is-complex-like/examples/index.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline, object-property-newline */
20-
2119
'use strict';
2220

2321
var Complex64 = require( '@stdlib/complex/float32/ctor' );
@@ -30,7 +28,11 @@ console.log( isComplexLike( new Complex64( 2.0, 2.0 ) ) );
3028
console.log( isComplexLike( new Complex128( 3.0, 1.0 ) ) );
3129
// => true
3230

33-
console.log( isComplexLike( { 're': 1.0, 'im': -1.0 } ) );
31+
var obj = {
32+
're': 1.0,
33+
'im': -1.0
34+
};
35+
console.log( isComplexLike( obj ) );
3436
// => true
3537

3638
console.log( isComplexLike( {} ) );

0 commit comments

Comments
 (0)