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 May 25, 2024
1 parent 45c0ad2 commit 5e6eb42
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ limitations under the License.

[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->

> Test if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64] and have the [same value][@stdlib/assert/is-same-value].
> Test if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64/ctor] and have the [same value][@stdlib/assert/is-same-value].
<section class="installation">

Expand Down Expand Up @@ -65,7 +65,7 @@ var isSameComplex128 = require( '@stdlib/assert-is-same-complex128' );

#### isSameComplex128( v1, v2 )

Tests if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64] and have the [same value][@stdlib/assert/is-same-value].
Tests if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64/ctor] and have the [same value][@stdlib/assert/is-same-value].

```javascript
var Complex128 = require( '@stdlib/complex-float64-ctor' );
Expand Down Expand Up @@ -208,7 +208,7 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].

[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-same-complex128/main/LICENSE

[@stdlib/complex/float64]: https://github.com/stdlib-js/complex-float64
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/complex-float64

[@stdlib/assert/is-same-value]: https://github.com/stdlib-js/assert-is-same-value

Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

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

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.

8 changes: 4 additions & 4 deletions docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@

Examples
--------
> var x = new {{alias:@stdlib/complex/float64}}( 1.0, 2.0 );
> var y = new {{alias:@stdlib/complex/float64}}( 1.0, 2.0 );
> var x = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 2.0 );
> var y = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 2.0 );
> var bool = {{alias}}( x, y )
true

> x = new {{alias:@stdlib/complex/float64}}( NaN, NaN );
> y = new {{alias:@stdlib/complex/float64}}( NaN, NaN );
> x = new {{alias:@stdlib/complex/float64/ctor}}( NaN, NaN );
> y = new {{alias:@stdlib/complex/float64/ctor}}( NaN, NaN );
> bool = {{alias}}( x, y )
true

Expand Down
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var isComplex128 = require( '@stdlib/assert-is-complex128' );
var isSameValue = require( '@stdlib/complex-base-assert-is-same-value' );
var isSameValue = require( '@stdlib/complex-float64-base-assert-is-same-value' );


// MAIN //
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@stdlib/assert-is-complex128": "^0.2.1",
"@stdlib/complex-base-assert-is-same-value": "^0.2.1"
"@stdlib/complex-float64-base-assert-is-same-value": "github:stdlib-js/complex-float64-base-assert-is-same-value#main"
},
"devDependencies": {
"@stdlib/assert-is-boolean": "^0.2.1",
Expand Down

0 comments on commit 5e6eb42

Please sign in to comment.