Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
chore: fix JavaScript lint errors (issue #10447)
  • Loading branch information
MANDEep22332 committed Feb 26, 2026
commit 3641d6b9bfb05bc0eaadf9e784c9adba82387db0
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ tape( 'the function supports specifying a negative stride', opts, function test(
var idx;
var x;

x = new Float32Array( [ 3.0, -4.0, 1.0, 15.0, 4.0, 3.0 ] );
x = new Float32Array([ 3.0, -4.0, 1.0, 15.0, 4.0, 3.0 ]);

idx = isamax( x.length, x, -1 );
t.strictEqual( idx, 2, 'returns expected value' );
Expand Down