Skip to content

Commit 75310c9

Browse files
committed
Auto-generated commit
1 parent d0a7713 commit 75310c9

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ A total of 19 issues were closed in this release:
165165

166166
<details>
167167

168+
- [`1129c90`](https://github.com/stdlib-js/stdlib/commit/1129c90ea87de4910cd73e4dbfee2289a3a5dc16) - **style:** remove whitespace and update keywords _(by Athan Reines)_
168169
- [`4e8074a`](https://github.com/stdlib-js/stdlib/commit/4e8074a0fd574272817ba43ee2fa24fbb7431e43) - **feat:** add `number/float16/base/assert/is-positive-zero` [(#9643)](https://github.com/stdlib-js/stdlib/pull/9643) _(by Neeraj Pathak, Philipp Burckhardt)_
169170
- [`63a9af5`](https://github.com/stdlib-js/stdlib/commit/63a9af59c1d602d79ae593bb98346e991b0f2874) - **docs:** update descriptions _(by Athan Reines)_
170171
- [`2d6416a`](https://github.com/stdlib-js/stdlib/commit/2d6416add43fe03624335438d20fb293bf78405a) - **feat:** add `number/float16/base/assert/is-negative-zero` [(#9623)](https://github.com/stdlib-js/stdlib/pull/9623) _(by Neeraj Pathak)_

float16/base/assert/is-negative-zero/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
"numeric",
6767
"negative",
6868
"zero",
69-
"0",
7069
"is",
7170
"type",
7271
"check"

float16/base/assert/is-positive-zero/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var PINF = require( '@stdlib/constants/float16/pinf' );
4040
* // returns false
4141
*/
4242
function isPositiveZero( x ) {
43-
return (x === 0.0 && 1.0/x === PINF);
43+
return ( x === 0.0 && 1.0/x === PINF );
4444
}
4545

4646

float16/base/assert/is-positive-zero/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
"numeric",
6767
"positive",
6868
"zero",
69-
"0",
7069
"is",
7170
"type",
7271
"check"

0 commit comments

Comments
 (0)