Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/node_modules/@stdlib/array/complex128/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@
if ( !isComplexArray( this ) ) {
throw new TypeError( 'invalid invocation. `this` is not a complex number array.' );
}
// FIXME: prefer a functional `copyWithin` implementation which addresses lack of universal browser support (e.g., IE11 and Safari) or ensure that typed arrays are polyfilled

Check warning on line 723 in lib/node_modules/@stdlib/array/complex128/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'fixme' comment: 'FIXME: prefer a functional `copyWithin`...'
if ( arguments.length === 2 ) {
this._buffer.copyWithin( target*2, start*2 );
} else {
Expand Down Expand Up @@ -1823,7 +1823,7 @@
* arr.set( [ 2.0, 2.0 ], 1 );
* arr.set( [ 3.0, 3.0 ], 2 );
*
* var z = arr.reduce( cadd );

Check warning on line 1826 in lib/node_modules/@stdlib/array/complex128/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "cadd"
* // returns <Complex128>
*
* var re = real( z );
Expand Down Expand Up @@ -1888,7 +1888,7 @@
* arr.set( [ 2.0, 2.0 ], 1 );
* arr.set( [ 3.0, 3.0 ], 2 );
*
* var z = arr.reduceRight( cadd );

Check warning on line 1891 in lib/node_modules/@stdlib/array/complex128/lib/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "cadd"
* // returns <Complex128>
*
* var re = real( z );
Expand Down Expand Up @@ -2862,6 +2862,7 @@
* @example
* var real = require( '@stdlib/complex/float64/real' );
* var imag = require( '@stdlib/complex/float64/imag' );
*
* var arr = new Complex128Array( 2 );
*
* arr.set( [ 1.0, -1.0 ], 0 );
Expand Down