@@ -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
10651065tape (  '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
10711071tape (  '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
10771077tape (  '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
10831083tape (  '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
10931093tape (  '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
11031103tape (  '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