Skip to content

Commit c25f20d

Browse files
committed
Auto-generated commit
1 parent 212ec61 commit c25f20d

File tree

4 files changed

+44
-34
lines changed

4 files changed

+44
-34
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-07-28T00:52:23.125Z
1+
2025-09-01T00:51:21.139Z

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-07-28)
7+
## Unreleased (2025-09-01)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`c894b66`](https://github.com/stdlib-js/stdlib/commit/c894b664661bfb87286304b24dd5a1758ae482b7) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
1516
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
1617

1718
</details>

CONTRIBUTORS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ Abdelrahman Samir <[email protected]>
99
Abdul Kaium <[email protected]>
1010
Abhay Punia <[email protected]>
1111
Abhijit Raut <[email protected]>
12+
Abhishek G <[email protected]>
1213
Abhishek Jain <[email protected]>
1314
Adarsh Palaskar <[email protected]>
1415
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1517
Ahmed Atwa <[email protected]>
1618
Ahmed Kashkoush <[email protected]>
1719
Ahmed Khaled <[email protected]>
@@ -119,6 +121,8 @@ Momtchil Momtchev <[email protected]>
119121
Muhammad Haris <[email protected]>
120122
Muhammad Taaha Tariq <[email protected]>
121123
Muhmmad Saad <[email protected]>
124+
NEEKUorAAYUSH <[email protected]>
125+
Nakul Krishnakumar <[email protected]>
122126
Naresh Jagadeesan <[email protected]>
123127
Naveen Kumar <[email protected]>
124128
Neeraj Pathak <[email protected]>
@@ -133,6 +137,7 @@ Oneday12323 <[email protected]>
133137
Ori Miles <[email protected]>
134138
Philipp Burckhardt <[email protected]>
135139
Pierre Forstmann <[email protected]>
140+
Pradyumn Prasad <[email protected]>
136141
Prajjwal Bajpai <[email protected]>
137142
Prajwal Kulkarni <[email protected]>
138143
Pranav Goswami <[email protected]>
@@ -161,6 +166,7 @@ Ruthwik Chikoti <[email protected]>
161166
Ryan Seal <[email protected]>
162167
Rylan Yang <[email protected]>
163168
SAHIL KUMAR <[email protected]>
169+
SAUJANYA MAGARDE <[email protected]>
164170
SHIVAM YADAV <[email protected]>
165171
Sachin Raj <[email protected]>
166172
Sahil Goyal <[email protected]>
@@ -183,6 +189,7 @@ Sivam Das <[email protected]>
183189
Snehil Shah <[email protected]>
184190
Soumajit Chatterjee <[email protected]>
185191
Spandan Barve <[email protected]>
192+
Srinivas Batthula <[email protected]>
186193
Stephannie Jiménez Gacha <[email protected]>
187194
Suhaib Ilahi <[email protected]>
188195
Suraj Kumar <[email protected]>
@@ -198,10 +205,12 @@ Utkarsh <http://[email protected]>
198205
Utkarsh Raj <[email protected]>
199206
UtkershBasnet <[email protected]>
200207
Vaibhav Patel <[email protected]>
208+
Vansh Choudhary <[email protected]>
201209
Vara Rahul Rajana <[email protected]>
202210
Varad Gupta <[email protected]>
203211
Vinit Pandit <[email protected]>
204212
Vivek Maurya <[email protected]>
213+
Wendy Yuchen Sun <[email protected]>
205214
Xiaochuan Ye <[email protected]>
206215
Yaswanth Kosuru <[email protected]>
207216
Yernar Yergaziyev <[email protected]>

test/test.js

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ tape( 'the function fills an array-like object with values returned from an iter
510510
actual = iterator2arrayviewRight( it, out );
511511
expected = new Float64Array( [ 4, 3, 2, 1 ] );
512512

513-
t.equal( actual, out, 'returns expected value' );
513+
t.strictEqual( actual, out, 'returns expected value' );
514514
t.deepEqual( actual, expected, 'returns expected value' );
515515
t.end();
516516
});
@@ -534,7 +534,7 @@ tape( 'the function fills an array-like object with values returned from an iter
534534
actual = iterator2arrayviewRight( it, out );
535535
expected = new Float64Array( [ 7.0, 8.0, 5.0, 6.0, 3.0, 4.0, 1.0, 2.0 ] );
536536

537-
t.equal( actual, out, 'returns expected value' );
537+
t.strictEqual( actual, out, 'returns expected value' );
538538
t.deepEqual( reinterpret128( actual, 0 ), expected, 'returns expected value' );
539539
t.end();
540540
});
@@ -553,7 +553,7 @@ tape( 'the function fills an array-like object view with values returned from an
553553
actual = iterator2arrayviewRight( it, out, 2 );
554554
expected = new Float64Array( [ 0, 0, 6, 5, 4, 3, 2, 1 ] );
555555

556-
t.equal( actual, out, 'returns expected value' );
556+
t.strictEqual( actual, out, 'returns expected value' );
557557
t.deepEqual( actual, expected, 'returns expected value' );
558558
t.end();
559559
});
@@ -572,7 +572,7 @@ tape( 'the function fills an array-like object view with values returned from an
572572
actual = iterator2arrayviewRight( it, out, 6 );
573573
expected = new Float64Array( [ 0, 0, 0, 0, 0, 0, 2, 1 ] );
574574

575-
t.equal( actual, out, 'returns expected value' );
575+
t.strictEqual( actual, out, 'returns expected value' );
576576
t.deepEqual( actual, expected, 'returns expected value' );
577577
t.end();
578578
});
@@ -591,7 +591,7 @@ tape( 'the function fills an array-like object view with values returned from an
591591
actual = iterator2arrayviewRight( it, out, -6 );
592592
expected = new Float64Array( [ 0, 0, 6, 5, 4, 3, 2, 1 ] );
593593

594-
t.equal( actual, out, 'returns expected value' );
594+
t.strictEqual( actual, out, 'returns expected value' );
595595
t.deepEqual( actual, expected, 'returns expected value' );
596596
t.end();
597597
});
@@ -610,7 +610,7 @@ tape( 'the function fills an array-like object view with values returned from an
610610
actual = iterator2arrayviewRight( it, out, 2, 4 );
611611
expected = new Float64Array( [ 0, 0, 2, 1, 0, 0, 0, 0 ] );
612612

613-
t.equal( actual, out, 'returns expected value' );
613+
t.strictEqual( actual, out, 'returns expected value' );
614614
t.deepEqual( actual, expected, 'returns expected value' );
615615
t.end();
616616
});
@@ -629,7 +629,7 @@ tape( 'the function fills an array-like object view with values returned from an
629629
actual = iterator2arrayviewRight( it, out, 2, 4000 );
630630
expected = new Float64Array( [ 0, 0, 6, 5, 4, 3, 2, 1 ] );
631631

632-
t.equal( actual, out, 'returns expected value' );
632+
t.strictEqual( actual, out, 'returns expected value' );
633633
t.deepEqual( actual, expected, 'returns expected value' );
634634
t.end();
635635
});
@@ -648,7 +648,7 @@ tape( 'the function fills an array-like object view with values returned from an
648648
actual = iterator2arrayviewRight( it, out, -6, 4 );
649649
expected = new Float64Array( [ 0, 0, 2, 1, 0, 0, 0, 0 ] );
650650

651-
t.equal( actual, out, 'returns expected value' );
651+
t.strictEqual( actual, out, 'returns expected value' );
652652
t.deepEqual( actual, expected, 'returns expected value' );
653653
t.end();
654654
});
@@ -667,7 +667,7 @@ tape( 'the function fills an array-like object view with values returned from an
667667
actual = iterator2arrayviewRight( it, out, 2, -4 );
668668
expected = new Float64Array( [ 0, 0, 2, 1, 0, 0, 0, 0 ] );
669669

670-
t.equal( actual, out, 'returns expected value' );
670+
t.strictEqual( actual, out, 'returns expected value' );
671671
t.deepEqual( actual, expected, 'returns expected value' );
672672
t.end();
673673
});
@@ -686,7 +686,7 @@ tape( 'the function fills an array-like object view with values returned from an
686686
actual = iterator2arrayviewRight( it, out, -6, -4 );
687687
expected = new Float64Array( [ 0, 0, 2, 1, 0, 0, 0, 0 ] );
688688

689-
t.equal( actual, out, 'returns expected value' );
689+
t.strictEqual( actual, out, 'returns expected value' );
690690
t.deepEqual( actual, expected, 'returns expected value' );
691691
t.end();
692692
});
@@ -705,7 +705,7 @@ tape( 'the function fills an array-like object view with values returned from an
705705
actual = iterator2arrayviewRight( it, out, -1000 );
706706
expected = new Float64Array( [ 0, 0, 0, 0, 4, 3, 2, 1 ] );
707707

708-
t.equal( actual, out, 'returns expected value' );
708+
t.strictEqual( actual, out, 'returns expected value' );
709709
t.deepEqual( actual, expected, 'returns expected value' );
710710
t.end();
711711
});
@@ -724,7 +724,7 @@ tape( 'the function fills an array-like object view with values returned from an
724724
actual = iterator2arrayviewRight( it, out, 0, -100 );
725725
expected = new Float64Array( [ 0, 0, 0, 0, 0, 0, 0, 0 ] );
726726

727-
t.equal( actual, out, 'returns expected value' );
727+
t.strictEqual( actual, out, 'returns expected value' );
728728
t.deepEqual( actual, expected, 'returns expected value' );
729729
t.end();
730730
});
@@ -743,7 +743,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
743743
actual = iterator2arrayviewRight( it, out, scale );
744744
expected = new Float64Array( [ 4, 6, 6, 4 ] );
745745

746-
t.equal( actual, out, 'returns expected value' );
746+
t.strictEqual( actual, out, 'returns expected value' );
747747
t.deepEqual( actual, expected, 'returns expected value' );
748748
t.end();
749749

@@ -766,7 +766,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
766766
actual = iterator2arrayviewRight( it, out, clbk );
767767
expected = new Float64Array( [ 4, 0, 3, 1, 2, 2, 1, 3 ] );
768768

769-
t.equal( actual, out, 'returns expected value' );
769+
t.strictEqual( actual, out, 'returns expected value' );
770770
t.deepEqual( reinterpret128( actual, 0 ), expected, 'returns expected value' );
771771
t.end();
772772

@@ -789,7 +789,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
789789
actual = iterator2arrayviewRight( it, out, 2, scale );
790790
expected = new Float64Array( [ 0, 0, 36, 25, 16, 9, 4, 1 ] );
791791

792-
t.equal( actual, out, 'returns expected value' );
792+
t.strictEqual( actual, out, 'returns expected value' );
793793
t.deepEqual( actual, expected, 'returns expected value' );
794794
t.end();
795795

@@ -812,7 +812,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
812812
actual = iterator2arrayviewRight( it, out, -6, scale );
813813
expected = new Float64Array( [ 0, 0, 36, 25, 16, 9, 4, 1 ] );
814814

815-
t.equal( actual, out, 'returns expected value' );
815+
t.strictEqual( actual, out, 'returns expected value' );
816816
t.deepEqual( actual, expected, 'returns expected value' );
817817
t.end();
818818

@@ -835,7 +835,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
835835
actual = iterator2arrayviewRight( it, out, 2, 4, scale );
836836
expected = new Float64Array( [ 0, 0, 4, 1, 0, 0, 0, 0 ] );
837837

838-
t.equal( actual, out, 'returns expected value' );
838+
t.strictEqual( actual, out, 'returns expected value' );
839839
t.deepEqual( actual, expected, 'returns expected value' );
840840
t.end();
841841

@@ -858,7 +858,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
858858
actual = iterator2arrayviewRight( it, out, 2, 4000, scale );
859859
expected = new Float64Array( [ 0, 0, 36, 25, 16, 9, 4, 1 ] );
860860

861-
t.equal( actual, out, 'returns expected value' );
861+
t.strictEqual( actual, out, 'returns expected value' );
862862
t.deepEqual( actual, expected, 'returns expected value' );
863863
t.end();
864864

@@ -881,7 +881,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
881881
actual = iterator2arrayviewRight( it, out, -6, 4, scale );
882882
expected = new Float64Array( [ 0, 0, 4, 1, 0, 0, 0, 0 ] );
883883

884-
t.equal( actual, out, 'returns expected value' );
884+
t.strictEqual( actual, out, 'returns expected value' );
885885
t.deepEqual( actual, expected, 'returns expected value' );
886886
t.end();
887887

@@ -904,7 +904,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
904904
actual = iterator2arrayviewRight( it, out, 2, -4, scale );
905905
expected = new Float64Array( [ 0, 0, 4, 1, 0, 0, 0, 0 ] );
906906

907-
t.equal( actual, out, 'returns expected value' );
907+
t.strictEqual( actual, out, 'returns expected value' );
908908
t.deepEqual( actual, expected, 'returns expected value' );
909909
t.end();
910910

@@ -927,7 +927,7 @@ tape( 'the function supports providing a callback to be invoked for each iterate
927927
actual = iterator2arrayviewRight( it, out, -6, -4, scale );
928928
expected = new Float64Array( [ 0, 0, 4, 1, 0, 0, 0, 0 ] );
929929

930-
t.equal( actual, out, 'returns expected value' );
930+
t.strictEqual( actual, out, 'returns expected value' );
931931
t.deepEqual( actual, expected, 'returns expected value' );
932932
t.end();
933933

@@ -950,7 +950,7 @@ tape( 'the function stops filling an array-like object once an iterator ends', f
950950
actual = iterator2arrayviewRight( it, out );
951951
expected = new Float64Array( [ 0, 0, 2, 1 ] );
952952

953-
t.equal( actual, out, 'returns expected value' );
953+
t.strictEqual( actual, out, 'returns expected value' );
954954
t.deepEqual( actual, expected, 'returns expected value' );
955955
t.end();
956956
});
@@ -969,7 +969,7 @@ tape( 'the function stops filling an array-like object once an iterator ends (ca
969969
actual = iterator2arrayviewRight( it, out, scale );
970970
expected = new Float64Array( [ 0, 0, 4, 1 ] );
971971

972-
t.equal( actual, out, 'returns expected value' );
972+
t.strictEqual( actual, out, 'returns expected value' );
973973
t.deepEqual( actual, expected, 'returns expected value' );
974974
t.end();
975975

@@ -996,7 +996,7 @@ tape( 'the function supports specifying the evaluation context of a provided cal
996996
actual = iterator2arrayviewRight( it, out, scale, ctx );
997997
expected = new Float64Array( [ 16, 9, 4, 1 ] );
998998

999-
t.equal( ctx.count, 4, 'returns expected value' );
999+
t.strictEqual( ctx.count, 4, 'returns expected value' );
10001000
t.deepEqual( actual, expected, 'returns expected value' );
10011001
t.end();
10021002

@@ -1024,7 +1024,7 @@ tape( 'the function supports specifying the evaluation context of a provided cal
10241024
actual = iterator2arrayviewRight( it, out, 2, scale, ctx );
10251025
expected = new Float64Array( [ 0, 0, 0, 0, 16, 9, 4, 1 ] );
10261026

1027-
t.equal( ctx.count, 4, 'returns expected value' );
1027+
t.strictEqual( ctx.count, 4, 'returns expected value' );
10281028
t.deepEqual( actual, expected, 'returns expected value' );
10291029
t.end();
10301030

@@ -1052,7 +1052,7 @@ tape( 'the function supports specifying the evaluation context of a provided cal
10521052
actual = iterator2arrayviewRight( it, out, 2, 4, scale, ctx );
10531053
expected = new Float64Array( [ 0, 0, 4, 1, 0, 0, 0, 0 ] );
10541054

1055-
t.equal( ctx.count, 2, 'returns expected value' );
1055+
t.strictEqual( ctx.count, 2, 'returns expected value' );
10561056
t.deepEqual( actual, expected, 'returns expected value' );
10571057
t.end();
10581058

@@ -1064,25 +1064,25 @@ tape( 'the function supports specifying the evaluation context of a provided cal
10641064

10651065
tape( 'the function supports infinite iterators', function test( t ) {
10661066
var out = iterator2arrayviewRight( randu(), new Float64Array( 10 ) );
1067-
t.equal( out.length, 10, 'has expected length' );
1067+
t.strictEqual( out.length, 10, 'has expected length' );
10681068
t.end();
10691069
});
10701070

10711071
tape( 'the function supports infinite iterators (begin)', function test( t ) {
10721072
var out = iterator2arrayviewRight( randu(), new Float64Array( 10 ), 5 );
1073-
t.equal( out.length, 10, 'has expected length' );
1073+
t.strictEqual( out.length, 10, 'has expected length' );
10741074
t.end();
10751075
});
10761076

10771077
tape( 'the function supports infinite iterators (begin + end)', function test( t ) {
10781078
var out = iterator2arrayviewRight( randu(), new Float64Array( 10 ), 2, 6 );
1079-
t.equal( out.length, 10, 'has expected length' );
1079+
t.strictEqual( out.length, 10, 'has expected length' );
10801080
t.end();
10811081
});
10821082

10831083
tape( 'the function supports infinite iterators (callback)', function test( t ) {
10841084
var out = iterator2arrayviewRight( randu(), new Float64Array( 10 ), scale );
1085-
t.equal( out.length, 10, 'has expected length' );
1085+
t.strictEqual( out.length, 10, 'has expected length' );
10861086
t.end();
10871087

10881088
function scale( v, i ) {
@@ -1092,7 +1092,7 @@ tape( 'the function supports infinite iterators (callback)', function test( t )
10921092

10931093
tape( 'the function supports infinite iterators (begin + callback)', function test( t ) {
10941094
var out = iterator2arrayviewRight( randu(), new Float64Array( 10 ), 5, scale ); // eslint-disable-line max-len
1095-
t.equal( out.length, 10, 'has expected length' );
1095+
t.strictEqual( out.length, 10, 'has expected length' );
10961096
t.end();
10971097

10981098
function scale( v, i ) {
@@ -1102,7 +1102,7 @@ tape( 'the function supports infinite iterators (begin + callback)', function te
11021102

11031103
tape( 'the function supports infinite iterators (begin + end + callback)', function test( t ) {
11041104
var out = iterator2arrayviewRight( randu(), new Float64Array( 10 ), 2, 6, scale ); // eslint-disable-line max-len
1105-
t.equal( out.length, 10, 'has expected length' );
1105+
t.strictEqual( out.length, 10, 'has expected length' );
11061106
t.end();
11071107

11081108
function scale( v, i ) {

0 commit comments

Comments
 (0)