You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/base/every-by/test/test.1d.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ tape( 'main export is a function', function test( t ) {
38
38
t.end();
39
39
});
40
40
41
-
tape('the function tests whether every element in a 1-dimensional ndarray is truthy',functiontest(t){
41
+
tape('the function tests whether every element in a 1-dimensional ndarray passes a test implemented by a predicate function',functiontest(t){
42
42
varactual;
43
43
varx;
44
44
@@ -59,7 +59,7 @@ tape( 'the function tests whether every element in a 1-dimensional ndarray is tr
59
59
}
60
60
});
61
61
62
-
tape('the function tests whether every element in a 1-dimensional ndarray is truthy (accessors)',functiontest(t){
62
+
tape('the function tests whether every element in a 1-dimensional ndarray passes a test implemented by a predicate function (accessors)',functiontest(t){
63
63
varactual;
64
64
varx;
65
65
@@ -80,7 +80,7 @@ tape( 'the function tests whether every element in a 1-dimensional ndarray is tr
80
80
}
81
81
});
82
82
83
-
tape('the function tests whether every element in a 1-dimensional ndarray is truthy (complex)',functiontest(t){
83
+
tape('the function tests whether every element in a 1-dimensional ndarray passes a test implemented by a predicate function (complex)',functiontest(t){
0 commit comments