Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 17, 2024
1 parent ae60c83 commit ec7f438
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ var out = isSameValueZero( z1, z2 );
// returns true
```

In contrast to the [SameValue Algorithm][ecma-262-same-value-algorithm] (as specified in ECMAScript 5), the function distinguishes between `+0` and `-0`.
In contrast to the [SameValue Algorithm][ecma-262-same-value-algorithm] (as specified in ECMAScript 5), the function does not distinguish between `+0` and `-0`.

```javascript
var Complex128 = require( '@stdlib/complex-float64' );
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ var reim = require( '@stdlib/complex-reim' );
*
* ## Notes
*
* - In contrast to the strict equality operator `===`, `NaNs` are treated as the same value.
* - The function implements the SameValueZero Algorithm used by `TypedArray` and `ArrayBuffer` constructors, `Map` and `Set` operations, `String.prototype.includes`, and `Array.prototype.includes` since ES2016.
* - In contrast to the strict equality operator `===`, `NaNs` are considered the same value.
*
* @param {Complex128} z1 - first complex number
* @param {Complex128} z2 - second complex number
Expand Down

0 comments on commit ec7f438

Please sign in to comment.