Skip to content

Commit f450dcd

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents d389d89 + bf46e99 commit f450dcd

File tree

78 files changed

+573
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+573
-83
lines changed

lib/node_modules/@stdlib/blas/base/wasm/ccopy/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,6 @@ The function has the following additional parameters:
304304
<!-- eslint no-undef: "error" -->
305305

306306
```javascript
307-
var hasWebAssemblySupport = require( '@stdlib/assert/has-wasm-support' );
308307
var oneTo = require( '@stdlib/array/one-to' );
309308
var zeros = require( '@stdlib/array/zeros' );
310309
var Complex64Array = require( '@stdlib/array/complex64' );

lib/node_modules/@stdlib/constants/float16/cbrt-eps/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ tape( 'main export is a number', function test( t ) {
3636

3737
tape( 'the exported value equals the cube root of half-precision floating-point epsilon', function test( t ) {
3838
var expected = cbrt( FLOAT16_EPSILON );
39-
t.strictEqual( FLOAT16_CBRT_EPSILON, expected, 'equals cbrt(2**-10)' );
39+
t.strictEqual( FLOAT16_CBRT_EPSILON, expected, 'returns expected value' );
4040
t.end();
4141
});

lib/node_modules/@stdlib/constants/float16/eps/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) {
3535

3636
tape( 'the exported value equals the difference between one and the smallest value greater than one which is representable as a half-precision floating-point number (2**-10)', function test( t ) {
3737
var expected = pow( 2.0, -10 );
38-
t.strictEqual( FLOAT16_EPSILON, expected, 'equals 2**-10' );
38+
t.strictEqual( FLOAT16_EPSILON, expected, 'returns expected value' );
3939
t.end();
4040
});

lib/node_modules/@stdlib/constants/float16/exponent-bias/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'the exported value is `15`', function test( t ) {
36-
t.equal( FLOAT16_EXPONENT_BIAS, 15, 'equals 15' );
36+
t.equal( FLOAT16_EXPONENT_BIAS, 15, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float16/max-safe-integer/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) {
3434
});
3535

3636
tape( 'the exported value is 2**11-1', function test( t ) {
37-
t.equal( FLOAT16_MAX_SAFE_INTEGER, pow( 2.0, 11 ) - 1.0, 'returns 2**11-1' );
37+
t.equal( FLOAT16_MAX_SAFE_INTEGER, pow( 2.0, 11 ) - 1.0, 'returns expected value' );
3838
t.end();
3939
});

lib/node_modules/@stdlib/constants/float16/max/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) {
3434
});
3535

3636
tape( 'export is equal to the maximum half-precision floating-point number', function test( t ) {
37-
t.equal( FLOAT16_MAX, pow(2, 15) * (2-pow(2, -10)), 'equals max value' );
37+
t.equal( FLOAT16_MAX, pow(2, 15) * (2-pow(2, -10)), 'returns expected value' );
3838
t.end();
3939
});

lib/node_modules/@stdlib/constants/float16/min-safe-integer/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ tape( 'main export is a number', function test( t ) {
3434
});
3535

3636
tape( 'the exported value is -2**11+1', function test( t ) {
37-
t.equal( FLOAT16_MIN_SAFE_INTEGER, -pow( 2.0, 11 )+1, 'returns -2**11+1' );
37+
t.equal( FLOAT16_MIN_SAFE_INTEGER, -pow( 2.0, 11 )+1, 'returns expected value' );
3838
t.end();
3939
});

lib/node_modules/@stdlib/constants/float16/ninf/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) {
3535

3636
tape( 'export is equal to negative infinity', function test( t ) {
3737
// Note: we rely on implicit type promotion. A 16-bit infinity should be promoted to a 64-bit infinity...
38-
t.equal( FLOAT16_NINF, Number.NEGATIVE_INFINITY, 'equals -infinity' );
38+
t.equal( FLOAT16_NINF, Number.NEGATIVE_INFINITY, 'returns expected value' );
3939
t.end();
4040
});

lib/node_modules/@stdlib/constants/float16/num-bytes/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3333
});
3434

3535
tape( 'the exported value is 2', function test( t ) {
36-
t.equal( NUM_BYTES, 2, 'equals 2' );
36+
t.equal( NUM_BYTES, 2, 'returns expected value' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/constants/float16/pinf/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ tape( 'main export is a number', function test( t ) {
3535

3636
tape( 'export is equal to positive infinity', function test( t ) {
3737
// Note: we rely on implicit type promotion. A 16-bit infinity should be promoted to a 64-bit infinity...
38-
t.equal( FLOAT16_PINF, Number.POSITIVE_INFINITY, 'equals infinity' );
38+
t.equal( FLOAT16_PINF, Number.POSITIVE_INFINITY, 'returns expected value' );
3939
t.end();
4040
});

0 commit comments

Comments
 (0)