diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/README.md b/lib/node_modules/@stdlib/number/float64/base/to-float16/README.md
new file mode 100644
index 000000000000..f33fa03f8a02
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/README.md
@@ -0,0 +1,102 @@
+
+
+# toFloat16
+
+> Convert a [double-precision floating-point number][ieee754] to the nearest [half-precision floating-point number][half-precision-floating-point-format].
+
+
+
+## Usage
+
+```javascript
+var float64ToFloat16 = require( '@stdlib/number/float64/base/to-float16' );
+```
+
+#### float64ToFloat16( x )
+
+Converts a [double-precision floating-point number][ieee754] to the nearest [half-precision floating-point number][ieee754].
+
+```javascript
+var y = float64ToFloat16( 1.337 );
+// returns 1.3369140625
+```
+
+
+
+
+
+
+
+## Notes
+
+- This function may be used as a polyfill for the ES2015 built-in [`Math.f16round`][math-f16round].
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var randu = require( '@stdlib/random/base/randu' );
+var float64ToFloat16 = require( '@stdlib/number/float64/base/to-float16' );
+
+var f64;
+var f16;
+var i;
+
+// Convert random double-precision floating-point numbers to the nearest half-precision floating-point number...
+for ( i = 0; i < 1000; i++ ) {
+ f64 = randu() * 100.0;
+ f16 = float64ToFloat16( f64 );
+ console.log( 'float64: %d => float16: %d', f64, f16 );
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
+
+[half-precision-floating-point-format]: https://en.wikipedia.org/wiki/Half-precision_floating-point_format
+
+[math-f16round]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/f16round
+
+
+
+
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/benchmark/benchmark.js b/lib/node_modules/@stdlib/number/float64/base/to-float16/benchmark/benchmark.js
new file mode 100644
index 000000000000..3c114d810dde
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/benchmark/benchmark.js
@@ -0,0 +1,101 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var randu = require( '@stdlib/random/base/randu' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var pkg = require( './../package.json' ).name;
+var float64ToFloat16 = require( './../lib' );
+var polyfill = require( './../lib/polyfill.js' );
+
+
+// VARIABLES //
+
+var opts = {
+ 'skip': ( typeof Math.f16round === 'undefined' ) // eslint-disable-line stdlib/no-builtin-math
+};
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ x = ( randu()*1.0e5 ) - 5.0e4;
+ y = float64ToFloat16( x );
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::polyfill', function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ x = ( randu()*1.0e5 ) - 5.0e4;
+ y = polyfill( x );
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::builtin', opts, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ x = ( randu()*1.0e5 ) - 5.0e4;
+ y = Math.f16round( x ); // eslint-disable-line stdlib/no-builtin-math
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/repl.txt b/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/repl.txt
new file mode 100644
index 000000000000..265c97a6b182
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/repl.txt
@@ -0,0 +1,22 @@
+
+{{alias}}( x )
+ Converts a double-precision floating-point number to the nearest half-
+ precision floating-point number.
+
+ Parameters
+ ----------
+ x: number
+ Double-precision floating-point number.
+
+ Returns
+ -------
+ out: float
+ Nearest half-precision floating-point number.
+
+ Examples
+ --------
+ > var y = {{alias}}( 1.337 )
+ 1.3369140625
+
+ See Also
+ --------
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/types/index.d.ts b/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/types/index.d.ts
new file mode 100644
index 000000000000..ba0d7f93eca4
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/types/index.d.ts
@@ -0,0 +1,36 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* Convert a double-precision floating-point number to the nearest half-precision floating-point number.
+*
+* @param x - double-precision floating-point number
+* @returns nearest half-precision floating-point number
+*
+* @example
+* var y = float64ToFloat16( 1.337 );
+* // returns 1.3369140625
+*/
+declare function float64ToFloat16( x: number ): number;
+
+
+// EXPORTS //
+
+export = float64ToFloat16;
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/types/test.ts b/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/types/test.ts
new file mode 100644
index 000000000000..264b4e781add
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/docs/types/test.ts
@@ -0,0 +1,43 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+import float64ToFloat16 = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ float64ToFloat16( 3.14 ); // $ExpectType number
+ float64ToFloat16( 0 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ float64ToFloat16( true ); // $ExpectError
+ float64ToFloat16( false ); // $ExpectError
+ float64ToFloat16( '5' ); // $ExpectError
+ float64ToFloat16( [] ); // $ExpectError
+ float64ToFloat16( {} ); // $ExpectError
+ float64ToFloat16( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ float64ToFloat16(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/to-float16/examples/index.js
new file mode 100644
index 000000000000..7dfc9298eb2c
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/examples/index.js
@@ -0,0 +1,33 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var randu = require( '@stdlib/random/base/randu' );
+var float64ToFloat16 = require( './../lib' );
+
+var f64;
+var f16;
+var i;
+
+// Convert random double-precision floating-point numbers to the nearest half-precision floating-point number...
+for ( i = 0; i < 1000; i++ ) {
+ f64 = randu() * 100.0;
+ f16 = float64ToFloat16( f64 );
+ console.log( 'float64: %d => float16: %d', f64, f16 );
+}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/index.js b/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/index.js
new file mode 100644
index 000000000000..5c4c6f0d73e6
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/index.js
@@ -0,0 +1,51 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* Convert a double-precision floating-point number to the nearest half-precision floating-point number.
+*
+* @module @stdlib/number/float64/base/to-float16
+*
+* @example
+* var float64ToFloat16 = require( '@stdlib/number/float64/base/to-float16' );
+*
+* var y = float64ToFloat16( 1.337 );
+* // returns 1.3369140625
+*/
+
+// MODULES //
+
+var builtin = require( './main.js' );
+var polyfill = require( './polyfill.js' );
+
+
+// MAIN //
+
+var float64ToFloat16;
+if ( typeof builtin === 'function' ) {
+ float64ToFloat16 = builtin;
+} else {
+ float64ToFloat16 = polyfill;
+}
+
+
+// EXPORTS //
+
+module.exports = float64ToFloat16;
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/main.js b/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/main.js
new file mode 100644
index 000000000000..f3c3cceb750c
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/main.js
@@ -0,0 +1,28 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MAIN //
+
+var f16round = ( typeof Math.f16round === 'function' ) ? Math.f16round : null; // eslint-disable-line stdlib/no-builtin-math
+
+
+// EXPORTS //
+
+module.exports = f16round;
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/polyfill.js b/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/polyfill.js
new file mode 100644
index 000000000000..4ad240b2bcf4
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/lib/polyfill.js
@@ -0,0 +1,97 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var abs = require( '@stdlib/math/base/special/abs' );
+var FLOAT16_EPSILON = require( '@stdlib/constants/float16/eps' );
+var FLOAT16_MAX = require( '@stdlib/constants/float16/max' );
+var FLOAT16_MIN = require( '@stdlib/constants/float16/min' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+
+
+// VARIABLES //
+
+var $isFinite = isFinite;
+var inverseEpsilon = 1 / EPS;
+
+
+// FUNCTIONS //
+
+/**
+* Performs banker's rounding (round-half-to-even) via floating-point arithmetic.
+*
+* @private
+* @param {number} n - input value
+* @returns {number} rounded value
+*/
+function roundTiesToEven( n ) {
+ return (n + inverseEpsilon) - inverseEpsilon;
+}
+
+
+// MAIN //
+
+/**
+* Converts a double-precision floating-point number to the nearest half-precision floating-point number.
+*
+* @param {number} x - double-precision floating-point number
+* @returns {number} nearest half-precision floating-point number
+*
+* @example
+* var y = float64ToFloat16( 1.337 );
+* // returns 1.3369140625
+*/
+function float64ToFloat16( x ) {
+ var result;
+ var mod;
+ var a;
+ var s;
+
+ if ( x === 0 || isNaN( x ) || !$isFinite( x ) ) {
+ return x;
+ }
+ if ( x < 0 ) {
+ s = -1;
+ } else {
+ s = 1;
+ }
+
+ mod = abs( x );
+ if ( mod < FLOAT16_MIN ) {
+ return (
+ s * roundTiesToEven( mod / FLOAT16_MIN / FLOAT16_EPSILON ) * FLOAT16_MIN * FLOAT16_EPSILON // eslint-disable-line max-len
+ );
+ }
+
+ // Veltkamp's splitting
+ a = ( 1 + ( FLOAT16_EPSILON / EPS ) ) * mod;
+ result = a - ( a - mod );
+ if ( result > FLOAT16_MAX || isNaN( result ) ) {
+ return s * PINF;
+ }
+ return s * result;
+}
+
+
+// EXPORTS //
+
+module.exports = float64ToFloat16;
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/package.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/package.json
new file mode 100644
index 000000000000..62e9a2fa603c
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/package.json
@@ -0,0 +1,72 @@
+{
+ "name": "@stdlib/number/float64/base/to-float16",
+ "version": "0.0.0",
+ "description": "Convert a double-precision floating-point number to the nearest half-precision floating-point number.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdtypes",
+ "base",
+ "utilities",
+ "utility",
+ "utils",
+ "util",
+ "types",
+ "type",
+ "cast",
+ "convert",
+ "float64",
+ "double",
+ "dbl",
+ "float16",
+ "float",
+ "to",
+ "bits",
+ "number"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_large.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_large.json
new file mode 100644
index 000000000000..90c76d6f9e75
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_large.json
@@ -0,0 +1 @@
+{"expected":[-1000.0,-1128.0,-1257.0,-1385.0,-1513.0,-1641.0,-1770.0,-1898.0,-2026.0,-2154.0,-2282.0,-2410.0,-2540.0,-2668.0,-2796.0,-2924.0,-3052.0,-3180.0,-3308.0,-3436.0,-3566.0,-3694.0,-3822.0,-3950.0,-4078.0,-4208.0,-4336.0,-4464.0,-4592.0,-4720.0,-4848.0,-4976.0,-5104.0,-5232.0,-5360.0,-5488.0,-5616.0,-5744.0,-5872.0,-6004.0,-6132.0,-6260.0,-6388.0,-6516.0,-6644.0,-6772.0,-6900.0,-7028.0,-7156.0,-7284.0,-7412.0,-7540.0,-7668.0,-7796.0,-7924.0,-8056.0,-8184.0,-8312.0,-8440.0,-8568.0,-8696.0,-8824.0,-8952.0,-9080.0,-9208.0,-9336.0,-9464.0,-9592.0,-9720.0,-9848.0,-9976.0,-10104.0,-10232.0,-10360.0,-10488.0,-10616.0,-10744.0,-10872.0,-11008.0,-11136.0,-11264.0,-11392.0,-11520.0,-11648.0,-11776.0,-11904.0,-12032.0,-12160.0,-12288.0,-12416.0,-12544.0,-12672.0,-12800.0,-12928.0,-13056.0,-13184.0,-13312.0,-13440.0,-13568.0,-13696.0,-13824.0,-13952.0,-14080.0,-14208.0,-14336.0,-14464.0,-14592.0,-14720.0,-14848.0,-14976.0,-15112.0,-15240.0,-15368.0,-15496.0,-15624.0,-15752.0,-15880.0,-16008.0,-16136.0,-16264.0,-16384.0,-16512.0,-16640.0,-16768.0,-16896.0,-17040.0,-17168.0,-17296.0,-17424.0,-17552.0,-17680.0,-17808.0,-17936.0,-18064.0,-18192.0,-18320.0,-18448.0,-18576.0,-18704.0,-18832.0,-18960.0,-19088.0,-19216.0,-19344.0,-19472.0,-19600.0,-19728.0,-19856.0,-19984.0,-20112.0,-20240.0,-20368.0,-20496.0,-20624.0,-20752.0,-20880.0,-21008.0,-21136.0,-21264.0,-21392.0,-21520.0,-21648.0,-21776.0,-21904.0,-22032.0,-22160.0,-22288.0,-22416.0,-22544.0,-22672.0,-22800.0,-22928.0,-23056.0,-23184.0,-23312.0,-23440.0,-23568.0,-23696.0,-23824.0,-23952.0,-24080.0,-24208.0,-24336.0,-24464.0,-24592.0,-24720.0,-24848.0,-24976.0,-25120.0,-25248.0,-25376.0,-25504.0,-25632.0,-25760.0,-25888.0,-26016.0,-26144.0,-26272.0,-26400.0,-26528.0,-26656.0,-26784.0,-26912.0,-27040.0,-27168.0,-27296.0,-27424.0,-27552.0,-27680.0,-27808.0,-27936.0,-28064.0,-28192.0,-28320.0,-28448.0,-28576.0,-28704.0,-28832.0,-28960.0,-29088.0,-29216.0,-29344.0,-29472.0,-29600.0,-29728.0,-29856.0,-29984.0,-30112.0,-30240.0,-30368.0,-30496.0,-30624.0,-30752.0,-30880.0,-31008.0,-31136.0,-31264.0,-31392.0,-31520.0,-31648.0,-31776.0,-31904.0,-32032.0,-32160.0,-32288.0,-32416.0,-32544.0,-32672.0,-32800.0,-32928.0,-33056.0,-33184.0,-33312.0,-33440.0,-33568.0,-33696.0,-33824.0,-33952.0,-34080.0,-34208.0,-34336.0,-34464.0,-34592.0,-34720.0,-34848.0,-34976.0,-35104.0,-35232.0,-35360.0,-35488.0,-35616.0,-35744.0,-35872.0,-36000.0,-36128.0,-36256.0,-36384.0,-36512.0,-36640.0,-36768.0,-36896.0,-37056.0,-37184.0,-37312.0,-37440.0,-37568.0,-37696.0,-37824.0,-37952.0,-38080.0,-38208.0,-38336.0,-38464.0,-38592.0,-38720.0,-38848.0,-38976.0,-39104.0,-39232.0,-39360.0,-39488.0,-39616.0,-39744.0,-39872.0,-40000.0,-40128.0,-40256.0,-40384.0,-40512.0,-40640.0,-40768.0,-40896.0,-41024.0,-41152.0,-41280.0,-41408.0,-41536.0,-41664.0,-41792.0,-41920.0,-42048.0,-42176.0,-42304.0,-42432.0,-42560.0,-42688.0,-42816.0,-42944.0,-43072.0,-43200.0,-43328.0,-43456.0,-43584.0,-43712.0,-43840.0,-43968.0,-44096.0,-44224.0,-44352.0,-44480.0,-44608.0,-44736.0,-44864.0,-44992.0,-45120.0,-45248.0,-45376.0,-45504.0,-45632.0,-45760.0,-45888.0,-46016.0,-46144.0,-46272.0,-46400.0,-46528.0,-46656.0,-46784.0,-46912.0,-47040.0,-47168.0,-47296.0,-47424.0,-47552.0,-47680.0,-47808.0,-47936.0,-48064.0,-48192.0,-48320.0,-48448.0,-48576.0,-48704.0,-48832.0,-48960.0,-49088.0,-49216.0,-49344.0,-49472.0,-49600.0,-49728.0,-49856.0,-49984.0,-50112.0,-50240.0,-50368.0,-50496.0,-50624.0,-50752.0,-50880.0,-51008.0,-51136.0,-51264.0,-51392.0,-51520.0,-51648.0,-51776.0,-51904.0,-52032.0,-52160.0,-52288.0,-52416.0,-52544.0,-52672.0,-52800.0,-52928.0,-53088.0,-53216.0,-53344.0,-53472.0,-53600.0,-53728.0,-53856.0,-53984.0,-54112.0,-54240.0,-54368.0,-54496.0,-54624.0,-54752.0,-54880.0,-55008.0,-55136.0,-55264.0,-55392.0,-55520.0,-55648.0,-55776.0,-55904.0,-56032.0,-56160.0,-56288.0,-56416.0,-56544.0,-56672.0,-56800.0,-56928.0,-57056.0,-57184.0,-57312.0,-57440.0,-57568.0,-57696.0,-57824.0,-57952.0,-58080.0,-58208.0,-58336.0,-58464.0,-58592.0,-58720.0,-58848.0,-58976.0,-59104.0,-59232.0,-59360.0,-59488.0,-59616.0,-59744.0,-59872.0,-60000.0,-60128.0,-60256.0,-60384.0,-60512.0,-60640.0,-60768.0,-60896.0,-61024.0,-61152.0,-61280.0,-61408.0,-61536.0,-61664.0,-61792.0,-61920.0,-62048.0,-62176.0,-62304.0,-62432.0,-62560.0,-62688.0,-62816.0,-62944.0,-63072.0,-63200.0,-63328.0,-63456.0,-63584.0,-63712.0,-63840.0,-63968.0,-64096.0,-64224.0,-64352.0,-64480.0,-64608.0,-64736.0,-64864.0,-64992.0],"x":[-1000.0,-1128.256513026052,-1256.5130260521041,-1384.7695390781564,-1513.0260521042085,-1641.2825651302605,-1769.5390781563126,-1897.7955911823647,-2026.0521042084167,-2154.308617234469,-2282.565130260521,-2410.8216432865734,-2539.078156312625,-2667.3346693386775,-2795.5911823647293,-2923.8476953907816,-3052.1042084168334,-3180.3607214428857,-3308.617234468938,-3436.87374749499,-3565.130260521042,-3693.386773547094,-3821.6432865731463,-3949.8997995991986,-4078.1563126252504,-4206.412825651302,-4334.669338677355,-4462.925851703407,-4591.182364729459,-4719.438877755511,-4847.695390781563,-4975.951903807615,-5104.208416833667,-5232.46492985972,-5360.7214428857715,-5488.977955911823,-5617.234468937876,-5745.490981963928,-5873.74749498998,-6002.0040080160325,-6130.260521042084,-6258.517034068136,-6386.773547094188,-6515.030060120241,-6643.2865731462925,-6771.543086172344,-6899.799599198397,-7028.056112224449,-7156.312625250501,-7284.5691382765535,-7412.825651302605,-7541.082164328657,-7669.338677354709,-7797.595190380762,-7925.851703406814,-8054.108216432865,-8182.364729458918,-8310.62124248497,-8438.877755511023,-8567.134268537075,-8695.390781563126,-8823.647294589178,-8951.90380761523,-9080.160320641282,-9208.416833667334,-9336.673346693387,-9464.92985971944,-9593.186372745491,-9721.442885771543,-9849.699398797595,-9977.955911823647,-10106.2124248497,-10234.468937875752,-10362.725450901804,-10490.981963927856,-10619.238476953908,-10747.49498997996,-10875.751503006011,-11004.008016032065,-11132.264529058117,-11260.521042084169,-11388.77755511022,-11517.034068136272,-11645.290581162324,-11773.547094188376,-11901.80360721443,-12030.060120240481,-12158.316633266533,-12286.573146292585,-12414.829659318637,-12543.086172344689,-12671.34268537074,-12799.599198396794,-12927.855711422846,-13056.112224448898,-13184.36873747495,-13312.625250501002,-13440.881763527053,-13569.138276553107,-13697.394789579159,-13825.65130260521,-13953.907815631263,-14082.164328657314,-14210.420841683366,-14338.677354709418,-14466.933867735472,-14595.190380761524,-14723.446893787575,-14851.703406813627,-14979.959919839679,-15108.21643286573,-15236.472945891783,-15364.729458917836,-15492.985971943888,-15621.24248496994,-15749.498997995992,-15877.755511022044,-16006.012024048096,-16134.268537074147,-16262.525050100201,-16390.781563126253,-16519.038076152305,-16647.294589178357,-16775.55110220441,-16903.80761523046,-17032.064128256512,-17160.320641282564,-17288.577154308616,-17416.833667334668,-17545.090180360723,-17673.346693386775,-17801.603206412827,-17929.85971943888,-18058.11623246493,-18186.372745490982,-18314.629258517034,-18442.885771543086,-18571.142284569138,-18699.39879759519,-18827.65531062124,-18955.911823647293,-19084.168336673345,-19212.4248496994,-19340.681362725452,-19468.937875751504,-19597.194388777556,-19725.450901803608,-19853.70741482966,-19981.96392785571,-20110.220440881763,-20238.476953907815,-20366.733466933867,-20494.98997995992,-20623.24649298597,-20751.503006012023,-20879.759519038074,-21008.01603206413,-21136.27254509018,-21264.529058116234,-21392.785571142285,-21521.042084168337,-21649.29859719439,-21777.55511022044,-21905.811623246493,-22034.068136272545,-22162.324649298596,-22290.581162324648,-22418.8376753507,-22547.094188376752,-22675.350701402807,-22803.60721442886,-22931.86372745491,-23060.120240480963,-23188.376753507015,-23316.633266533066,-23444.88977955912,-23573.14629258517,-23701.402805611222,-23829.659318637274,-23957.915831663326,-24086.172344689377,-24214.42885771543,-24342.68537074148,-24470.941883767537,-24599.19839679359,-24727.45490981964,-24855.711422845692,-24983.967935871744,-25112.224448897796,-25240.480961923848,-25368.7374749499,-25496.99398797595,-25625.250501002003,-25753.507014028055,-25881.763527054107,-26010.02004008016,-26138.276553106214,-26266.533066132266,-26394.789579158318,-26523.04609218437,-26651.30260521042,-26779.559118236473,-26907.815631262525,-27036.072144288577,-27164.32865731463,-27292.58517034068,-27420.841683366732,-27549.098196392784,-27677.354709418836,-27805.611222444888,-27933.867735470943,-28062.124248496995,-28190.380761523047,-28318.6372745491,-28446.89378757515,-28575.150300601203,-28703.406813627254,-28831.663326653306,-28959.919839679358,-29088.17635270541,-29216.43286573146,-29344.689378757514,-29472.945891783565,-29601.20240480962,-29729.458917835673,-29857.715430861725,-29985.971943887776,-30114.22845691383,-30242.48496993988,-30370.741482965932,-30498.997995991984,-30627.254509018036,-30755.511022044087,-30883.76753507014,-31012.02404809619,-31140.280561122243,-31268.537074148295,-31396.79358717435,-31525.050100200402,-31653.306613226454,-31781.563126252506,-31909.819639278558,-32038.07615230461,-32166.33266533066,-32294.589178356713,-32422.845691382765,-32551.102204408817,-32679.35871743487,-32807.61523046092,-32935.871743486976,-33064.128256513024,-33192.38476953908,-33320.64128256513,-33448.89779559118,-33577.15430861723,-33705.41082164329,-33833.667334669335,-33961.92384769539,-34090.180360721446,-34218.436873747494,-34346.69338677355,-34474.9498997996,-34603.20641282565,-34731.4629258517,-34859.71943887776,-34987.975951903805,-35116.23246492986,-35244.48897795591,-35372.745490981964,-35501.00200400801,-35629.25851703407,-35757.51503006012,-35885.77154308617,-36014.02805611223,-36142.284569138275,-36270.54108216433,-36398.79759519038,-36527.054108216435,-36655.31062124248,-36783.56713426854,-36911.82364729459,-37040.08016032064,-37168.33667334669,-37296.593186372746,-37424.8496993988,-37553.10621242485,-37681.362725450905,-37809.61923847695,-37937.87575150301,-38066.13226452906,-38194.38877755511,-38322.64529058116,-38450.901803607216,-38579.158316633264,-38707.41482965932,-38835.67134268537,-38963.92785571142,-39092.18436873748,-39220.44088176353,-39348.69739478958,-39476.95390781563,-39605.210420841686,-39733.466933867734,-39861.72344689379,-39989.97995991984,-40118.23647294589,-40246.49298597194,-40374.749498998,-40503.006012024045,-40631.2625250501,-40759.51903807615,-40887.775551102204,-41016.03206412826,-41144.28857715431,-41272.54509018036,-41400.80160320641,-41529.05811623247,-41657.314629258515,-41785.57114228457,-41913.82765531062,-42042.084168336674,-42170.34068136272,-42298.59719438878,-42426.853707414826,-42555.11022044088,-42683.36673346694,-42811.623246492985,-42939.87975951904,-43068.13627254509,-43196.392785571144,-43324.64929859719,-43452.90581162325,-43581.162324649296,-43709.41883767535,-43837.6753507014,-43965.931863727455,-44094.188376753504,-44222.44488977956,-44350.701402805615,-44478.95791583166,-44607.21442885772,-44735.47094188377,-44863.72745490982,-44991.98396793587,-45120.240480961926,-45248.496993987974,-45376.75350701403,-45505.01002004008,-45633.26653306613,-45761.52304609218,-45889.77955911824,-46018.03607214429,-46146.29258517034,-46274.549098196396,-46402.805611222444,-46531.0621242485,-46659.31863727455,-46787.5751503006,-46915.83166332665,-47044.08817635271,-47172.344689378755,-47300.60120240481,-47428.85771543086,-47557.114228456914,-47685.37074148296,-47813.62725450902,-47941.88376753507,-48070.14028056112,-48198.39679358718,-48326.653306613225,-48454.90981963928,-48583.16633266533,-48711.422845691384,-48839.67935871743,-48967.93587174349,-49096.192384769536,-49224.44889779559,-49352.70541082164,-49480.961923847695,-49609.21843687375,-49737.4749498998,-49865.731462925854,-49993.9879759519,-50122.24448897796,-50250.501002004006,-50378.75751503006,-50507.01402805611,-50635.270541082165,-50763.52705410821,-50891.78356713427,-51020.04008016032,-51148.29659318637,-51276.55310621243,-51404.80961923848,-51533.06613226453,-51661.32264529058,-51789.579158316636,-51917.835671342684,-52046.09218436874,-52174.34869739479,-52302.60521042084,-52430.86172344689,-52559.11823647295,-52687.374749498995,-52815.63126252505,-52943.887775551106,-53072.144288577154,-53200.40080160321,-53328.65731462926,-53456.91382765531,-53585.17034068136,-53713.42685370742,-53841.683366733465,-53969.93987975952,-54098.19639278557,-54226.452905811624,-54354.70941883767,-54482.96593186373,-54611.222444889776,-54739.47895791583,-54867.73547094189,-54995.991983967935,-55124.24849699399,-55252.50501002004,-55380.761523046094,-55509.01803607214,-55637.2745490982,-55765.531062124246,-55893.7875751503,-56022.04408817635,-56150.300601202405,-56278.55711422845,-56406.81362725451,-56535.070140280564,-56663.32665330661,-56791.58316633267,-56919.839679358716,-57048.09619238477,-57176.35270541082,-57304.609218436875,-57432.86573146292,-57561.12224448898,-57689.37875751503,-57817.63527054108,-57945.89178356713,-58074.14829659319,-58202.40480961924,-58330.66132264529,-58458.917835671346,-58587.174348697394,-58715.43086172345,-58843.6873747495,-58971.94388777555,-59100.2004008016,-59228.45691382766,-59356.713426853705,-59484.96993987976,-59613.22645290581,-59741.482965931864,-59869.73947895792,-59997.99599198397,-60126.25250501002,-60254.50901803607,-60382.76553106213,-60511.022044088175,-60639.27855711423,-60767.53507014028,-60895.791583166334,-61024.04809619238,-61152.30460921844,-61280.561122244486,-61408.81763527054,-61537.07414829659,-61665.330661322645,-61793.5871743487,-61921.84368737475,-62050.100200400804,-62178.35671342685,-62306.61322645291,-62434.869739478956,-62563.12625250501,-62691.38276553106,-62819.639278557115,-62947.89579158316,-63076.15230460922,-63204.40881763527,-63332.66533066132,-63460.92184368738,-63589.178356713426,-63717.43486973948,-63845.69138276553,-63973.947895791585,-64102.20440881763,-64230.46092184369,-64358.71743486974,-64486.97394789579,-64615.23046092184,-64743.486973947896,-64871.743486973945,-65000.0]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_normal.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_normal.json
new file mode 100644
index 000000000000..4ba9531a4dfb
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_normal.json
@@ -0,0 +1 @@
+{"expected":[-1001.0,-999.0,-997.0,-995.0,-993.0,-991.0,-989.0,-987.0,-985.0,-983.0,-981.0,-979.0,-977.0,-975.0,-973.0,-971.0,-969.0,-967.0,-965.0,-963.0,-961.0,-959.0,-957.0,-955.0,-953.0,-951.0,-949.0,-947.0,-945.0,-943.0,-941.0,-939.0,-937.0,-935.0,-933.0,-931.0,-929.0,-927.0,-925.0,-923.0,-921.0,-919.0,-916.5,-914.5,-912.5,-910.5,-908.5,-906.5,-904.5,-902.5,-900.5,-898.5,-896.5,-894.5,-892.5,-890.5,-888.5,-886.5,-884.5,-882.5,-880.5,-878.5,-876.5,-874.5,-872.5,-870.5,-868.5,-866.5,-864.5,-862.5,-860.5,-858.5,-856.5,-854.5,-852.5,-850.5,-848.5,-846.5,-844.5,-842.5,-840.5,-838.5,-836.5,-834.5,-832.5,-830.5,-828.5,-826.5,-824.5,-822.5,-820.5,-818.5,-816.5,-814.5,-812.5,-810.5,-808.5,-806.5,-804.5,-802.5,-800.5,-798.5,-796.5,-794.5,-792.5,-790.5,-788.5,-786.5,-784.5,-782.5,-780.5,-778.5,-776.5,-774.5,-772.5,-770.5,-768.5,-766.5,-764.5,-762.5,-760.5,-758.5,-756.5,-754.5,-752.5,-750.0,-748.0,-746.0,-744.0,-742.0,-740.0,-738.0,-736.0,-734.0,-732.0,-730.0,-728.0,-726.0,-724.0,-722.0,-720.0,-718.0,-716.0,-714.0,-712.0,-710.0,-708.0,-706.0,-704.0,-702.0,-700.0,-698.0,-696.0,-694.0,-692.0,-690.0,-688.0,-686.0,-684.0,-682.0,-680.0,-678.0,-676.0,-674.0,-672.0,-670.0,-668.0,-666.0,-664.0,-662.0,-660.0,-658.0,-656.0,-654.0,-652.0,-650.0,-648.0,-646.0,-644.0,-642.0,-640.0,-638.0,-636.0,-634.0,-632.0,-630.0,-628.0,-626.0,-624.0,-622.0,-620.0,-618.0,-616.0,-614.0,-612.0,-610.0,-608.0,-606.0,-604.0,-602.0,-600.0,-598.0,-596.0,-594.0,-592.0,-590.0,-588.0,-586.0,-583.5,-581.5,-579.5,-577.5,-575.5,-573.5,-571.5,-569.5,-567.5,-565.5,-563.5,-561.5,-559.5,-557.5,-555.5,-553.5,-551.5,-549.5,-547.5,-545.5,-543.5,-541.5,-539.5,-537.5,-535.5,-533.5,-531.5,-529.5,-527.5,-525.5,-523.5,-521.5,-519.5,-517.5,-515.5,-513.5,-511.5,-509.5,-507.5,-505.5,-503.5,-501.5,-499.5,-497.5,-495.5,-493.5,-491.5,-489.5,-487.5,-485.5,-483.5,-481.5,-479.5,-477.5,-475.5,-473.5,-471.5,-469.5,-467.5,-465.5,-463.5,-461.5,-459.5,-457.25,-455.25,-453.25,-451.25,-449.25,-447.25,-445.25,-443.25,-441.25,-439.25,-437.25,-435.25,-433.25,-431.25,-429.25,-427.25,-425.25,-423.25,-421.25,-419.25,-417.25,-415.25,-413.25,-411.25,-409.25,-407.25,-405.25,-403.25,-401.25,-399.25,-397.25,-395.25,-393.25,-391.25,-389.25,-387.25,-385.25,-383.25,-381.25,-379.25,-377.25,-375.0,-373.0,-371.0,-369.0,-367.0,-365.0,-363.0,-361.0,-359.0,-357.0,-355.0,-353.0,-351.0,-349.0,-347.0,-345.0,-343.0,-341.0,-339.0,-337.0,-335.0,-333.0,-331.0,-329.0,-327.0,-325.0,-323.0,-321.0,-319.0,-317.0,-315.0,-313.0,-311.0,-309.0,-307.0,-305.0,-303.0,-301.0,-299.0,-297.0,-295.0,-293.0,-290.75,-288.75,-286.75,-284.75,-282.75,-280.75,-278.75,-276.75,-274.75,-272.75,-270.75,-268.75,-266.75,-264.75,-262.75,-260.75,-258.75,-256.75,-254.75,-252.75,-250.75,-248.75,-246.75,-244.75,-242.75,-240.75,-238.75,-236.75,-234.75,-232.75,-230.75,-228.625,-226.625,-224.625,-222.625,-220.625,-218.625,-216.625,-214.625,-212.625,-210.625,-208.625,-206.625,-204.625,-202.625,-200.625,-198.625,-196.625,-194.625,-192.625,-190.625,-188.625,-186.5,-184.5,-182.5,-180.5,-178.5,-176.5,-174.5,-172.5,-170.5,-168.5,-166.5,-164.5,-162.5,-160.5,-158.5,-156.5,-154.5,-152.5,-150.5,-148.5,-146.5,-144.375,-142.375,-140.375,-138.375,-136.375,-134.375,-132.375,-130.375,-128.375,-126.375,-124.375,-122.375,-120.375,-118.375,-116.375,-114.3125,-112.3125,-110.3125,-108.3125,-106.3125,-104.3125,-102.3125,-100.3125,-98.3125,-96.3125,-94.3125,-92.25,-90.25,-88.25,-86.25,-84.25,-82.25,-80.25,-78.25,-76.25,-74.25,-72.1875,-70.1875,-68.1875,-66.1875,-64.1875,-62.1875,-60.1875,-58.1875,-56.15625,-54.15625,-52.15625,-50.15625,-48.15625,-46.125,-44.125,-42.125,-40.125,-38.125,-36.09375,-34.09375,-32.09375,-30.09375,-28.078125,-26.078125,-24.078125,-22.0625,-20.0625,-18.046875,-16.046875,-14.0390625,-12.0390625,-10.03125,-8.0234375,-6.01953125,-4.01171875,-2.005859375,0.0],"x":[-1001.0,-998.9939879759519,-996.9879759519038,-994.9819639278558,-992.9759519038076,-990.9699398797595,-988.9639278557114,-986.9579158316633,-984.9519038076153,-982.9458917835672,-980.939879759519,-978.9338677354709,-976.9278557114228,-974.9218436873748,-972.9158316633267,-970.9098196392786,-968.9038076152304,-966.8977955911823,-964.8917835671342,-962.8857715430862,-960.8797595190381,-958.87374749499,-956.8677354709419,-954.8617234468937,-952.8557114228457,-950.8496993987976,-948.8436873747495,-946.8376753507014,-944.8316633266533,-942.8256513026053,-940.8196392785571,-938.813627254509,-936.8076152304609,-934.8016032064128,-932.7955911823648,-930.7895791583167,-928.7835671342685,-926.7775551102204,-924.7715430861723,-922.7655310621243,-920.7595190380762,-918.7535070140281,-916.7474949899799,-914.7414829659318,-912.7354709418838,-910.7294589178357,-908.7234468937876,-906.7174348697395,-904.7114228456913,-902.7054108216433,-900.6993987975952,-898.6933867735471,-896.687374749499,-894.6813627254509,-892.6753507014027,-890.6693386773547,-888.6633266533066,-886.6573146292585,-884.6513026052104,-882.6452905811623,-880.6392785571143,-878.6332665330661,-876.627254509018,-874.6212424849699,-872.6152304609218,-870.6092184368738,-868.6032064128257,-866.5971943887776,-864.5911823647294,-862.5851703406813,-860.5791583166333,-858.5731462925852,-856.5671342685371,-854.561122244489,-852.5551102204408,-850.5490981963928,-848.5430861723447,-846.5370741482966,-844.5310621242485,-842.5250501002004,-840.5190380761524,-838.5130260521042,-836.5070140280561,-834.501002004008,-832.4949899799599,-830.4889779559119,-828.4829659318638,-826.4769539078156,-824.4709418837675,-822.4649298597194,-820.4589178356713,-818.4529058116233,-816.4468937875752,-814.440881763527,-812.4348697394789,-810.4288577154308,-808.4228456913828,-806.4168336673347,-804.4108216432866,-802.4048096192384,-800.3987975951903,-798.3927855711423,-796.3867735470942,-794.3807615230461,-792.374749498998,-790.3687374749499,-788.3627254509018,-786.3567134268537,-784.3507014028056,-782.3446893787575,-780.3386773547094,-778.3326653306614,-776.3266533066133,-774.3206412825651,-772.314629258517,-770.3086172344689,-768.3026052104209,-766.2965931863728,-764.2905811623247,-762.2845691382765,-760.2785571142284,-758.2725450901804,-756.2665330661323,-754.2605210420842,-752.2545090180361,-750.2484969939879,-748.2424849699398,-746.2364729458918,-744.2304609218437,-742.2244488977956,-740.2184368737475,-738.2124248496993,-736.2064128256513,-734.2004008016032,-732.1943887775551,-730.188376753507,-728.1823647294589,-726.1763527054109,-724.1703406813627,-722.1643286573146,-720.1583166332665,-718.1523046092184,-716.1462925851704,-714.1402805611223,-712.1342685370741,-710.128256513026,-708.1222444889779,-706.1162324649299,-704.1102204408818,-702.1042084168337,-700.0981963927856,-698.0921843687374,-696.0861723446894,-694.0801603206413,-692.0741482965932,-690.0681362725451,-688.062124248497,-686.056112224449,-684.0501002004008,-682.0440881763527,-680.0380761523046,-678.0320641282565,-676.0260521042084,-674.0200400801604,-672.0140280561122,-670.0080160320641,-668.002004008016,-665.9959919839679,-663.9899799599199,-661.9839679358718,-659.9779559118236,-657.9719438877755,-655.9659318637274,-653.9599198396794,-651.9539078156313,-649.9478957915832,-647.941883767535,-645.9358717434869,-643.9298597194389,-641.9238476953908,-639.9178356713427,-637.9118236472946,-635.9058116232464,-633.8997995991984,-631.8937875751503,-629.8877755511022,-627.8817635270541,-625.875751503006,-623.869739478958,-621.8637274549098,-619.8577154308617,-617.8517034068136,-615.8456913827655,-613.8396793587175,-611.8336673346694,-609.8276553106213,-607.8216432865731,-605.815631262525,-603.8096192384769,-601.8036072144289,-599.7975951903808,-597.7915831663327,-595.7855711422845,-593.7795591182364,-591.7735470941884,-589.7675350701403,-587.7615230460922,-585.7555110220441,-583.7494989979959,-581.7434869739479,-579.7374749498998,-577.7314629258517,-575.7254509018036,-573.7194388777555,-571.7134268537075,-569.7074148296593,-567.7014028056112,-565.6953907815631,-563.689378757515,-561.683366733467,-559.6773547094189,-557.6713426853707,-555.6653306613226,-553.6593186372745,-551.6533066132265,-549.6472945891784,-547.6412825651303,-545.6352705410821,-543.629258517034,-541.623246492986,-539.6172344689379,-537.6112224448898,-535.6052104208417,-533.5991983967936,-531.5931863727454,-529.5871743486974,-527.5811623246493,-525.5751503006012,-523.5691382765531,-521.563126252505,-519.557114228457,-517.5511022044088,-515.5450901803607,-513.5390781563126,-511.53306613226454,-509.5270541082164,-507.52104208416836,-505.51503006012024,-503.5090180360721,-501.50300601202406,-499.49699398797594,-497.4909819639279,-495.48496993987976,-493.47895791583164,-491.4729458917836,-489.46693386773546,-487.4609218436874,-485.4549098196393,-483.44889779559117,-481.4428857715431,-479.436873747495,-477.43086172344687,-475.4248496993988,-473.4188376753507,-471.4128256513026,-469.4068136272545,-467.4008016032064,-465.3947895791583,-463.3887775551102,-461.38276553106215,-459.37675350701403,-457.3707414829659,-455.36472945891785,-453.35871743486973,-451.35270541082167,-449.34669338677355,-447.34068136272543,-445.3346693386774,-443.32865731462925,-441.32264529058114,-439.3166332665331,-437.31062124248496,-435.3046092184369,-433.2985971943888,-431.29258517034066,-429.2865731462926,-427.2805611222445,-425.2745490981964,-423.2685370741483,-421.2625250501002,-419.2565130260521,-417.250501002004,-415.24448897795594,-413.2384769539078,-411.2324649298597,-409.22645290581164,-407.2204408817635,-405.2144288577154,-403.20841683366734,-401.2024048096192,-399.19639278557116,-397.19038076152304,-395.1843687374749,-393.17835671342687,-391.17234468937875,-389.1663326653307,-387.16032064128257,-385.15430861723445,-383.1482965931864,-381.14228456913827,-379.1362725450902,-377.1302605210421,-375.12424849699397,-373.1182364729459,-371.1122244488978,-369.1062124248497,-367.1002004008016,-365.0941883767535,-363.08817635270543,-361.0821643286573,-359.0761523046092,-357.07014028056113,-355.064128256513,-353.05811623246495,-351.05210420841684,-349.0460921843687,-347.04008016032066,-345.03406813627254,-343.0280561122245,-341.02204408817636,-339.01603206412824,-337.0100200400802,-335.00400801603206,-332.99799599198394,-330.9919839679359,-328.98597194388776,-326.9799599198397,-324.9739478957916,-322.96793587174346,-320.9619238476954,-318.9559118236473,-316.9498997995992,-314.9438877755511,-312.937875751503,-310.9318637274549,-308.9258517034068,-306.91983967935874,-304.9138276553106,-302.9078156312625,-300.90180360721445,-298.89579158316633,-296.8897795591182,-294.88376753507015,-292.87775551102203,-290.87174348697397,-288.86573146292585,-286.85971943887773,-284.85370741482967,-282.84769539078155,-280.8416833667335,-278.8356713426854,-276.82965931863725,-274.8236472945892,-272.8176352705411,-270.811623246493,-268.8056112224449,-266.7995991983968,-264.7935871743487,-262.7875751503006,-260.7815631262525,-258.7755511022044,-256.7695390781563,-254.7635270541082,-252.75751503006012,-250.75150300601203,-248.74549098196394,-246.73947895791582,-244.73346693386773,-242.72745490981964,-240.72144288577155,-238.71543086172343,-236.70941883767534,-234.70340681362725,-232.69739478957916,-230.69138276553107,-228.68537074148296,-226.67935871743487,-224.67334669338678,-222.6673346693387,-220.66132264529057,-218.65531062124248,-216.6492985971944,-214.6432865731463,-212.6372745490982,-210.6312625250501,-208.625250501002,-206.6192384769539,-204.61322645290582,-202.6072144288577,-200.6012024048096,-198.59519038076152,-196.58917835671343,-194.58316633266534,-192.57715430861722,-190.57114228456913,-188.56513026052104,-186.55911823647295,-184.55310621242484,-182.54709418837675,-180.54108216432866,-178.53507014028057,-176.52905811623248,-174.52304609218436,-172.51703406813627,-170.51102204408818,-168.5050100200401,-166.49899799599197,-164.49298597194388,-162.4869739478958,-160.4809619238477,-158.4749498997996,-156.4689378757515,-154.4629258517034,-152.4569138276553,-150.45090180360722,-148.4448897795591,-146.43887775551102,-144.43286573146293,-142.42685370741484,-140.42084168336675,-138.41482965931863,-136.40881763527054,-134.40280561122245,-132.39679358717436,-130.39078156312624,-128.38476953907815,-126.37875751503006,-124.37274549098197,-122.36673346693387,-120.36072144288578,-118.35470941883767,-116.34869739478958,-114.34268537074148,-112.33667334669339,-110.33066132264528,-108.3246492985972,-106.3186372745491,-104.312625250501,-102.30661322645291,-100.3006012024048,-98.29458917835672,-96.28857715430861,-94.28256513026052,-92.27655310621242,-90.27054108216433,-88.26452905811624,-86.25851703406813,-84.25250501002004,-82.24649298597194,-80.24048096192385,-78.23446893787575,-76.22845691382766,-74.22244488977955,-72.21643286573146,-70.21042084168337,-68.20440881763527,-66.19839679358718,-64.19238476953907,-62.186372745490985,-60.18036072144289,-58.17434869739479,-56.168336673346694,-54.1623246492986,-52.1563126252505,-50.1503006012024,-48.144288577154306,-46.13827655310621,-44.13226452905812,-42.12625250501002,-40.120240480961925,-38.11422845691383,-36.10821643286573,-34.102204408817634,-32.09619238476954,-30.090180360721444,-28.084168336673347,-26.07815631262525,-24.072144288577153,-22.06613226452906,-20.060120240480963,-18.054108216432866,-16.04809619238477,-14.042084168336673,-12.036072144288577,-10.030060120240481,-8.024048096192384,-6.018036072144288,-4.012024048096192,-2.006012024048096,0.0]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_small.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_small.json
new file mode 100644
index 000000000000..0ad42fbbd0e1
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_small.json
@@ -0,0 +1 @@
+{"expected":[-1.0,-0.998046875,-0.99609375,-0.994140625,-0.9921875,-0.98974609375,-0.98779296875,-0.98583984375,-0.98388671875,-0.98193359375,-0.97998046875,-0.97802734375,-0.97607421875,-0.97412109375,-0.97216796875,-0.9697265625,-0.9677734375,-0.9658203125,-0.9638671875,-0.9619140625,-0.9599609375,-0.9580078125,-0.9560546875,-0.9541015625,-0.95166015625,-0.94970703125,-0.94775390625,-0.94580078125,-0.94384765625,-0.94189453125,-0.93994140625,-0.93798828125,-0.93603515625,-0.93408203125,-0.931640625,-0.9296875,-0.927734375,-0.92578125,-0.923828125,-0.921875,-0.919921875,-0.91796875,-0.916015625,-0.9140625,-0.91162109375,-0.90966796875,-0.90771484375,-0.90576171875,-0.90380859375,-0.90185546875,-0.89990234375,-0.89794921875,-0.89599609375,-0.8935546875,-0.8916015625,-0.8896484375,-0.8876953125,-0.8857421875,-0.8837890625,-0.8818359375,-0.8798828125,-0.8779296875,-0.8759765625,-0.87353515625,-0.87158203125,-0.86962890625,-0.86767578125,-0.86572265625,-0.86376953125,-0.86181640625,-0.85986328125,-0.85791015625,-0.85546875,-0.853515625,-0.8515625,-0.849609375,-0.84765625,-0.845703125,-0.84375,-0.841796875,-0.83984375,-0.837890625,-0.83544921875,-0.83349609375,-0.83154296875,-0.82958984375,-0.82763671875,-0.82568359375,-0.82373046875,-0.82177734375,-0.81982421875,-0.81787109375,-0.8154296875,-0.8134765625,-0.8115234375,-0.8095703125,-0.8076171875,-0.8056640625,-0.8037109375,-0.8017578125,-0.7998046875,-0.79736328125,-0.79541015625,-0.79345703125,-0.79150390625,-0.78955078125,-0.78759765625,-0.78564453125,-0.78369140625,-0.78173828125,-0.77978515625,-0.77734375,-0.775390625,-0.7734375,-0.771484375,-0.76953125,-0.767578125,-0.765625,-0.763671875,-0.76171875,-0.75927734375,-0.75732421875,-0.75537109375,-0.75341796875,-0.75146484375,-0.74951171875,-0.74755859375,-0.74560546875,-0.74365234375,-0.74169921875,-0.7392578125,-0.7373046875,-0.7353515625,-0.7333984375,-0.7314453125,-0.7294921875,-0.7275390625,-0.7255859375,-0.7236328125,-0.7216796875,-0.71923828125,-0.71728515625,-0.71533203125,-0.71337890625,-0.71142578125,-0.70947265625,-0.70751953125,-0.70556640625,-0.70361328125,-0.701171875,-0.69921875,-0.697265625,-0.6953125,-0.693359375,-0.69140625,-0.689453125,-0.6875,-0.685546875,-0.68359375,-0.68115234375,-0.67919921875,-0.67724609375,-0.67529296875,-0.67333984375,-0.67138671875,-0.66943359375,-0.66748046875,-0.66552734375,-0.6630859375,-0.6611328125,-0.6591796875,-0.6572265625,-0.6552734375,-0.6533203125,-0.6513671875,-0.6494140625,-0.6474609375,-0.6455078125,-0.64306640625,-0.64111328125,-0.63916015625,-0.63720703125,-0.63525390625,-0.63330078125,-0.63134765625,-0.62939453125,-0.62744140625,-0.62548828125,-0.623046875,-0.62109375,-0.619140625,-0.6171875,-0.615234375,-0.61328125,-0.611328125,-0.609375,-0.607421875,-0.60498046875,-0.60302734375,-0.60107421875,-0.59912109375,-0.59716796875,-0.59521484375,-0.59326171875,-0.59130859375,-0.58935546875,-0.58740234375,-0.5849609375,-0.5830078125,-0.5810546875,-0.5791015625,-0.5771484375,-0.5751953125,-0.5732421875,-0.5712890625,-0.5693359375,-0.56689453125,-0.56494140625,-0.56298828125,-0.56103515625,-0.55908203125,-0.55712890625,-0.55517578125,-0.55322265625,-0.55126953125,-0.54931640625,-0.546875,-0.544921875,-0.54296875,-0.541015625,-0.5390625,-0.537109375,-0.53515625,-0.533203125,-0.53125,-0.529296875,-0.52685546875,-0.52490234375,-0.52294921875,-0.52099609375,-0.51904296875,-0.51708984375,-0.51513671875,-0.51318359375,-0.51123046875,-0.5087890625,-0.5068359375,-0.5048828125,-0.5029296875,-0.5009765625,-0.4990234375,-0.4970703125,-0.494873046875,-0.492919921875,-0.490966796875,-0.489013671875,-0.487060546875,-0.48486328125,-0.48291015625,-0.48095703125,-0.47900390625,-0.47705078125,-0.474853515625,-0.472900390625,-0.470947265625,-0.468994140625,-0.467041015625,-0.46484375,-0.462890625,-0.4609375,-0.458984375,-0.45703125,-0.454833984375,-0.452880859375,-0.450927734375,-0.448974609375,-0.44677734375,-0.44482421875,-0.44287109375,-0.44091796875,-0.43896484375,-0.436767578125,-0.434814453125,-0.432861328125,-0.430908203125,-0.428955078125,-0.4267578125,-0.4248046875,-0.4228515625,-0.4208984375,-0.4189453125,-0.416748046875,-0.414794921875,-0.412841796875,-0.410888671875,-0.408935546875,-0.40673828125,-0.40478515625,-0.40283203125,-0.40087890625,-0.398681640625,-0.396728515625,-0.394775390625,-0.392822265625,-0.390869140625,-0.388671875,-0.38671875,-0.384765625,-0.3828125,-0.380859375,-0.378662109375,-0.376708984375,-0.374755859375,-0.372802734375,-0.370849609375,-0.36865234375,-0.36669921875,-0.36474609375,-0.36279296875,-0.36083984375,-0.358642578125,-0.356689453125,-0.354736328125,-0.352783203125,-0.3505859375,-0.3486328125,-0.3466796875,-0.3447265625,-0.3427734375,-0.340576171875,-0.338623046875,-0.336669921875,-0.334716796875,-0.332763671875,-0.33056640625,-0.32861328125,-0.32666015625,-0.32470703125,-0.32275390625,-0.320556640625,-0.318603515625,-0.316650390625,-0.314697265625,-0.312744140625,-0.310546875,-0.30859375,-0.306640625,-0.3046875,-0.302490234375,-0.300537109375,-0.298583984375,-0.296630859375,-0.294677734375,-0.29248046875,-0.29052734375,-0.28857421875,-0.28662109375,-0.28466796875,-0.282470703125,-0.280517578125,-0.278564453125,-0.276611328125,-0.274658203125,-0.2724609375,-0.2705078125,-0.2685546875,-0.2666015625,-0.2646484375,-0.262451171875,-0.260498046875,-0.258544921875,-0.256591796875,-0.25439453125,-0.25244140625,-0.25048828125,-0.24853515625,-0.2464599609375,-0.2445068359375,-0.242431640625,-0.240478515625,-0.238525390625,-0.2364501953125,-0.2344970703125,-0.232421875,-0.23046875,-0.228515625,-0.2264404296875,-0.2244873046875,-0.222412109375,-0.220458984375,-0.2183837890625,-0.2164306640625,-0.2144775390625,-0.21240234375,-0.21044921875,-0.2083740234375,-0.2064208984375,-0.2044677734375,-0.202392578125,-0.200439453125,-0.1983642578125,-0.1964111328125,-0.1943359375,-0.1923828125,-0.1904296875,-0.1883544921875,-0.1864013671875,-0.184326171875,-0.182373046875,-0.180419921875,-0.1783447265625,-0.1763916015625,-0.17431640625,-0.17236328125,-0.1702880859375,-0.1683349609375,-0.1663818359375,-0.164306640625,-0.162353515625,-0.1602783203125,-0.1583251953125,-0.1563720703125,-0.154296875,-0.15234375,-0.1502685546875,-0.1483154296875,-0.146240234375,-0.144287109375,-0.142333984375,-0.1402587890625,-0.1383056640625,-0.13623046875,-0.13427734375,-0.13232421875,-0.1302490234375,-0.1282958984375,-0.126220703125,-0.124267578125,-0.12225341796875,-0.1202392578125,-0.11822509765625,-0.1162109375,-0.1142578125,-0.11224365234375,-0.1102294921875,-0.10821533203125,-0.106201171875,-0.10418701171875,-0.10223388671875,-0.1002197265625,-0.09820556640625,-0.09619140625,-0.09417724609375,-0.0921630859375,-0.0902099609375,-0.08819580078125,-0.086181640625,-0.08416748046875,-0.0821533203125,-0.08013916015625,-0.07818603515625,-0.076171875,-0.07415771484375,-0.0721435546875,-0.07012939453125,-0.068115234375,-0.066162109375,-0.06414794921875,-0.0621337890625,-0.06011962890625,-0.05810546875,-0.056121826171875,-0.054107666015625,-0.052093505859375,-0.05010986328125,-0.048095703125,-0.04608154296875,-0.044097900390625,-0.042083740234375,-0.040069580078125,-0.0380859375,-0.03607177734375,-0.0340576171875,-0.032073974609375,-0.030059814453125,-0.0280609130859375,-0.0260467529296875,-0.0240478515625,-0.0220489501953125,-0.0200347900390625,-0.018035888671875,-0.0160369873046875,-0.01403045654296875,-0.01202392578125,-0.01001739501953125,-0.00801849365234375,-0.006011962890625,-0.004009246826171875,-0.0020046234130859375,0.0],"x":[-1.0,-0.9979959919839679,-0.9959919839679359,-0.9939879759519038,-0.9919839679358717,-0.9899799599198397,-0.9879759519038076,-0.9859719438877755,-0.9839679358717435,-0.9819639278557114,-0.9799599198396793,-0.9779559118236473,-0.9759519038076152,-0.9739478957915831,-0.9719438877755511,-0.969939879759519,-0.9679358717434869,-0.9659318637274549,-0.9639278557114228,-0.9619238476953907,-0.9599198396793587,-0.9579158316633266,-0.9559118236472945,-0.9539078156312625,-0.9519038076152304,-0.9498997995991983,-0.9478957915831663,-0.9458917835671342,-0.9438877755511023,-0.9418837675350702,-0.9398797595190381,-0.9378757515030061,-0.935871743486974,-0.9338677354709419,-0.9318637274549099,-0.9298597194388778,-0.9278557114228457,-0.9258517034068137,-0.9238476953907816,-0.9218436873747495,-0.9198396793587175,-0.9178356713426854,-0.9158316633266533,-0.9138276553106213,-0.9118236472945892,-0.9098196392785571,-0.9078156312625251,-0.905811623246493,-0.9038076152304609,-0.9018036072144289,-0.8997995991983968,-0.8977955911823647,-0.8957915831663327,-0.8937875751503006,-0.8917835671342685,-0.8897795591182365,-0.8877755511022044,-0.8857715430861723,-0.8837675350701403,-0.8817635270541082,-0.8797595190380761,-0.8777555110220441,-0.875751503006012,-0.87374749498998,-0.8717434869739479,-0.8697394789579158,-0.8677354709418837,-0.8657314629258517,-0.8637274549098196,-0.8617234468937875,-0.8597194388777555,-0.8577154308617234,-0.8557114228456913,-0.8537074148296593,-0.8517034068136272,-0.8496993987975952,-0.8476953907815631,-0.845691382765531,-0.843687374749499,-0.8416833667334669,-0.8396793587174348,-0.8376753507014028,-0.8356713426853707,-0.8336673346693386,-0.8316633266533067,-0.8296593186372746,-0.8276553106212425,-0.8256513026052105,-0.8236472945891784,-0.8216432865731463,-0.8196392785571143,-0.8176352705410822,-0.8156312625250501,-0.8136272545090181,-0.811623246492986,-0.8096192384769539,-0.8076152304609219,-0.8056112224448898,-0.8036072144288577,-0.8016032064128257,-0.7995991983967936,-0.7975951903807615,-0.7955911823647295,-0.7935871743486974,-0.7915831663326653,-0.7895791583166333,-0.7875751503006012,-0.7855711422845691,-0.7835671342685371,-0.781563126252505,-0.779559118236473,-0.7775551102204409,-0.7755511022044088,-0.7735470941883767,-0.7715430861723447,-0.7695390781563126,-0.7675350701402806,-0.7655310621242485,-0.7635270541082164,-0.7615230460921844,-0.7595190380761523,-0.7575150300601202,-0.7555110220440882,-0.7535070140280561,-0.751503006012024,-0.749498997995992,-0.7474949899799599,-0.7454909819639278,-0.7434869739478958,-0.7414829659318637,-0.7394789579158316,-0.7374749498997996,-0.7354709418837675,-0.7334669338677354,-0.7314629258517034,-0.7294589178356713,-0.7274549098196392,-0.7254509018036072,-0.7234468937875751,-0.7214428857715431,-0.7194388777555111,-0.717434869739479,-0.7154308617234469,-0.7134268537074149,-0.7114228456913828,-0.7094188376753507,-0.7074148296593187,-0.7054108216432866,-0.7034068136272545,-0.7014028056112225,-0.6993987975951904,-0.6973947895791583,-0.6953907815631263,-0.6933867735470942,-0.6913827655310621,-0.6893787575150301,-0.687374749498998,-0.685370741482966,-0.6833667334669339,-0.6813627254509018,-0.6793587174348698,-0.6773547094188377,-0.6753507014028056,-0.6733466933867736,-0.6713426853707415,-0.6693386773547094,-0.6673346693386774,-0.6653306613226453,-0.6633266533066132,-0.6613226452905812,-0.6593186372745491,-0.657314629258517,-0.655310621242485,-0.6533066132264529,-0.6513026052104208,-0.6492985971943888,-0.6472945891783567,-0.6452905811623246,-0.6432865731462926,-0.6412825651302605,-0.6392785571142284,-0.6372745490981964,-0.6352705410821643,-0.6332665330661322,-0.6312625250501002,-0.6292585170340681,-0.627254509018036,-0.625250501002004,-0.6232464929859719,-0.6212424849699398,-0.6192384769539078,-0.6172344689378757,-0.6152304609218436,-0.6132264529058116,-0.6112224448897795,-0.6092184368737475,-0.6072144288577155,-0.6052104208416834,-0.6032064128256514,-0.6012024048096193,-0.5991983967935872,-0.5971943887775552,-0.5951903807615231,-0.593186372745491,-0.591182364729459,-0.5891783567134269,-0.5871743486973948,-0.5851703406813628,-0.5831663326653307,-0.5811623246492986,-0.5791583166332666,-0.5771543086172345,-0.5751503006012024,-0.5731462925851704,-0.5711422845691383,-0.5691382765531062,-0.5671342685370742,-0.5651302605210421,-0.56312625250501,-0.561122244488978,-0.5591182364729459,-0.5571142284569138,-0.5551102204408818,-0.5531062124248497,-0.5511022044088176,-0.5490981963927856,-0.5470941883767535,-0.5450901803607214,-0.5430861723446894,-0.5410821643286573,-0.5390781563126252,-0.5370741482965932,-0.5350701402805611,-0.533066132264529,-0.531062124248497,-0.5290581162324649,-0.5270541082164328,-0.5250501002004008,-0.5230460921843687,-0.5210420841683366,-0.5190380761523046,-0.5170340681362725,-0.5150300601202404,-0.5130260521042084,-0.5110220440881763,-0.5090180360721442,-0.5070140280561122,-0.5050100200400801,-0.503006012024048,-0.501002004008016,-0.49899799599198397,-0.4969939879759519,-0.49498997995991983,-0.49298597194388777,-0.4909819639278557,-0.48897795591182364,-0.48697394789579157,-0.4849699398797595,-0.48296593186372744,-0.48096192384769537,-0.4789579158316633,-0.47695390781563124,-0.4749498997995992,-0.4729458917835671,-0.4709418837675351,-0.46893787575150303,-0.46693386773547096,-0.4649298597194389,-0.46292585170340683,-0.46092184368737477,-0.4589178356713427,-0.45691382765531063,-0.45490981963927857,-0.4529058116232465,-0.45090180360721444,-0.44889779559118237,-0.4468937875751503,-0.44488977955911824,-0.44288577154308617,-0.4408817635270541,-0.43887775551102204,-0.43687374749499,-0.4348697394789579,-0.43286573146292584,-0.4308617234468938,-0.4288577154308617,-0.42685370741482964,-0.4248496993987976,-0.4228456913827655,-0.42084168336673344,-0.4188376753507014,-0.4168336673346693,-0.4148296593186373,-0.41282565130260523,-0.41082164328657317,-0.4088176352705411,-0.40681362725450904,-0.40480961923847697,-0.4028056112224449,-0.40080160320641284,-0.39879759519038077,-0.3967935871743487,-0.39478957915831664,-0.3927855711422846,-0.3907815631262525,-0.38877755511022044,-0.3867735470941884,-0.3847695390781563,-0.38276553106212424,-0.3807615230460922,-0.3787575150300601,-0.37675350701402804,-0.374749498997996,-0.3727454909819639,-0.37074148296593185,-0.3687374749498998,-0.3667334669338677,-0.36472945891783565,-0.3627254509018036,-0.36072144288577157,-0.3587174348697395,-0.35671342685370744,-0.35470941883767537,-0.3527054108216433,-0.35070140280561124,-0.3486973947895792,-0.3466933867735471,-0.34468937875751504,-0.342685370741483,-0.3406813627254509,-0.33867735470941884,-0.3366733466933868,-0.3346693386773547,-0.33266533066132264,-0.3306613226452906,-0.3286573146292585,-0.32665330661322645,-0.3246492985971944,-0.3226452905811623,-0.32064128256513025,-0.3186372745490982,-0.3166332665330661,-0.31462925851703405,-0.312625250501002,-0.3106212424849699,-0.30861723446893785,-0.3066132264529058,-0.3046092184368738,-0.3026052104208417,-0.30060120240480964,-0.2985971943887776,-0.2965931863727455,-0.29458917835671344,-0.2925851703406814,-0.2905811623246493,-0.28857715430861725,-0.2865731462925852,-0.2845691382765531,-0.28256513026052105,-0.280561122244489,-0.2785571142284569,-0.27655310621242485,-0.2745490981963928,-0.2725450901803607,-0.27054108216432865,-0.2685370741482966,-0.2665330661322645,-0.26452905811623245,-0.2625250501002004,-0.2605210420841683,-0.25851703406813625,-0.2565130260521042,-0.2545090180360721,-0.25250501002004005,-0.250501002004008,-0.24849699398797595,-0.24649298597194388,-0.24448897795591182,-0.24248496993987975,-0.24048096192384769,-0.23847695390781562,-0.23647294589178355,-0.23446893787575152,-0.23246492985971945,-0.23046092184368738,-0.22845691382765532,-0.22645290581162325,-0.22444889779559118,-0.22244488977955912,-0.22044088176352705,-0.218436873747495,-0.21643286573146292,-0.21442885771543085,-0.2124248496993988,-0.21042084168336672,-0.20841683366733466,-0.20641282565130262,-0.20440881763527055,-0.20240480961923848,-0.20040080160320642,-0.19839679358717435,-0.1963927855711423,-0.19438877755511022,-0.19238476953907815,-0.1903807615230461,-0.18837675350701402,-0.18637274549098196,-0.1843687374749499,-0.18236472945891782,-0.18036072144288579,-0.17835671342685372,-0.17635270541082165,-0.1743486973947896,-0.17234468937875752,-0.17034068136272545,-0.1683366733466934,-0.16633266533066132,-0.16432865731462926,-0.1623246492985972,-0.16032064128256512,-0.15831663326653306,-0.156312625250501,-0.15430861723446893,-0.1523046092184369,-0.15030060120240482,-0.14829659318637275,-0.1462925851703407,-0.14428857715430862,-0.14228456913827656,-0.1402805611222445,-0.13827655310621242,-0.13627254509018036,-0.1342685370741483,-0.13226452905811623,-0.13026052104208416,-0.1282565130260521,-0.12625250501002003,-0.12424849699398798,-0.12224448897795591,-0.12024048096192384,-0.11823647294589178,-0.11623246492985972,-0.11422845691382766,-0.11222444889779559,-0.11022044088176353,-0.10821643286573146,-0.1062124248496994,-0.10420841683366733,-0.10220440881763528,-0.10020040080160321,-0.09819639278557114,-0.09619238476953908,-0.09418837675350701,-0.09218436873747494,-0.09018036072144289,-0.08817635270541083,-0.08617234468937876,-0.0841683366733467,-0.08216432865731463,-0.08016032064128256,-0.0781563126252505,-0.07615230460921844,-0.07414829659318638,-0.07214428857715431,-0.07014028056112225,-0.06813627254509018,-0.06613226452905811,-0.06412825651302605,-0.06212424849699399,-0.06012024048096192,-0.05811623246492986,-0.056112224448897796,-0.05410821643286573,-0.052104208416833664,-0.050100200400801605,-0.04809619238476954,-0.04609218436873747,-0.04408817635270541,-0.04208416833667335,-0.04008016032064128,-0.03807615230460922,-0.036072144288577156,-0.03406813627254509,-0.03206412825651302,-0.03006012024048096,-0.028056112224448898,-0.026052104208416832,-0.02404809619238477,-0.022044088176352707,-0.02004008016032064,-0.018036072144288578,-0.01603206412825651,-0.014028056112224449,-0.012024048096192385,-0.01002004008016032,-0.008016032064128256,-0.006012024048096192,-0.004008016032064128,-0.002004008016032064,0.0]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_subnormal.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_subnormal.json
new file mode 100644
index 000000000000..5ddf1dcdda7f
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_subnormal.json
@@ -0,0 +1 @@
+{"expected":[-1.1920928955078125e-7,-2.384185791015625e-7,-3.5762786865234375e-7,-4.76837158203125e-7,-5.960464477539062e-7,-7.152557373046875e-7,-8.344650268554688e-7,-9.5367431640625e-7,-1.0728836059570312e-6,-1.1920928955078125e-6,-1.3113021850585938e-6,-1.430511474609375e-6,-1.5497207641601562e-6,-1.6689300537109375e-6,-1.7881393432617188e-6,-1.9073486328125e-6,-2.0265579223632812e-6,-2.1457672119140625e-6,-2.2649765014648438e-6,-2.384185791015625e-6,-2.5033950805664062e-6,-2.6226043701171875e-6,-2.7418136596679688e-6,-2.86102294921875e-6,-2.9802322387695312e-6,-3.0994415283203125e-6,-3.2186508178710938e-6,-3.337860107421875e-6,-3.4570693969726562e-6,-3.5762786865234375e-6,-3.6954879760742188e-6,-3.814697265625e-6,-3.933906555175781e-6,-4.0531158447265625e-6,-4.172325134277344e-6,-4.291534423828125e-6,-4.410743713378906e-6,-4.5299530029296875e-6,-4.649162292480469e-6,-4.76837158203125e-6,-4.887580871582031e-6,-5.0067901611328125e-6,-5.125999450683594e-6,-5.245208740234375e-6,-5.364418029785156e-6,-5.4836273193359375e-6,-5.602836608886719e-6,-5.7220458984375e-6,-5.841255187988281e-6,-5.9604644775390625e-6,-6.079673767089844e-6,-6.198883056640625e-6,-6.318092346191406e-6,-6.4373016357421875e-6,-6.556510925292969e-6,-6.67572021484375e-6,-6.794929504394531e-6,-6.9141387939453125e-6,-7.033348083496094e-6,-7.212162017822266e-6,-7.331371307373047e-6,-7.450580596923828e-6,-7.569789886474609e-6,-7.68899917602539e-6,-7.808208465576172e-6,-7.927417755126953e-6,-8.046627044677734e-6,-8.165836334228516e-6,-8.285045623779297e-6,-8.404254913330078e-6,-8.52346420288086e-6,-8.64267349243164e-6,-8.761882781982422e-6,-8.881092071533203e-6,-9.000301361083984e-6,-9.119510650634766e-6,-9.238719940185547e-6,-9.357929229736328e-6,-9.47713851928711e-6,-9.59634780883789e-6,-9.715557098388672e-6,-9.834766387939453e-6,-9.953975677490234e-6,-1.0073184967041016e-5,-1.0192394256591797e-5,-1.0311603546142578e-5,-1.043081283569336e-5,-1.055002212524414e-5,-1.0669231414794922e-5,-1.0788440704345703e-5,-1.0907649993896484e-5,-1.1026859283447266e-5,-1.1146068572998047e-5,-1.1265277862548828e-5,-1.138448715209961e-5,-1.150369644165039e-5,-1.1622905731201172e-5,-1.1742115020751953e-5,-1.1861324310302734e-5,-1.1980533599853516e-5,-1.2099742889404297e-5,-1.2218952178955078e-5,-1.233816146850586e-5,-1.245737075805664e-5,-1.2576580047607422e-5,-1.2695789337158203e-5,-1.2814998626708984e-5,-1.2934207916259766e-5,-1.3053417205810547e-5,-1.3172626495361328e-5,-1.329183578491211e-5,-1.341104507446289e-5,-1.3530254364013672e-5,-1.3649463653564453e-5,-1.3768672943115234e-5,-1.3887882232666016e-5,-1.4007091522216797e-5,-1.4126300811767578e-5,-1.424551010131836e-5,-1.436471939086914e-5,-1.4483928680419922e-5,-1.4603137969970703e-5,-1.4722347259521484e-5,-1.4841556549072266e-5,-1.4960765838623047e-5,-1.5079975128173828e-5,-1.519918441772461e-5,-1.531839370727539e-5,-1.5437602996826172e-5,-1.5556812286376953e-5,-1.5676021575927734e-5,-1.5854835510253906e-5,-1.5974044799804688e-5,-1.609325408935547e-5,-1.621246337890625e-5,-1.633167266845703e-5,-1.6450881958007812e-5,-1.6570091247558594e-5,-1.6689300537109375e-5,-1.6808509826660156e-5,-1.6927719116210938e-5,-1.704692840576172e-5,-1.71661376953125e-5,-1.728534698486328e-5,-1.7404556274414062e-5,-1.7523765563964844e-5,-1.7642974853515625e-5,-1.7762184143066406e-5,-1.7881393432617188e-5,-1.800060272216797e-5,-1.811981201171875e-5,-1.823902130126953e-5,-1.8358230590820312e-5,-1.8477439880371094e-5,-1.8596649169921875e-5,-1.8715858459472656e-5,-1.8835067749023438e-5,-1.895427703857422e-5,-1.9073486328125e-5,-1.919269561767578e-5,-1.9311904907226562e-5,-1.9431114196777344e-5,-1.9550323486328125e-5,-1.9669532775878906e-5,-1.9788742065429688e-5,-1.990795135498047e-5,-2.002716064453125e-5,-2.014636993408203e-5,-2.0265579223632812e-5,-2.0384788513183594e-5,-2.0503997802734375e-5,-2.0623207092285156e-5,-2.0742416381835938e-5,-2.086162567138672e-5,-2.09808349609375e-5,-2.110004425048828e-5,-2.1219253540039062e-5,-2.1338462829589844e-5,-2.1457672119140625e-5,-2.1576881408691406e-5,-2.1696090698242188e-5,-2.181529998779297e-5,-2.193450927734375e-5,-2.205371856689453e-5,-2.2172927856445312e-5,-2.2292137145996094e-5,-2.2411346435546875e-5,-2.2530555725097656e-5,-2.2649765014648438e-5,-2.276897430419922e-5,-2.288818359375e-5,-2.300739288330078e-5,-2.3126602172851562e-5,-2.3245811462402344e-5,-2.3365020751953125e-5,-2.3484230041503906e-5,-2.3603439331054688e-5,-2.372264862060547e-5,-2.384185791015625e-5,-2.396106719970703e-5,-2.4080276489257812e-5,-2.4199485778808594e-5,-2.4318695068359375e-5,-2.4497509002685547e-5,-2.4616718292236328e-5,-2.473592758178711e-5,-2.485513687133789e-5,-2.4974346160888672e-5,-2.5093555450439453e-5,-2.5212764739990234e-5,-2.5331974029541016e-5,-2.5451183319091797e-5,-2.5570392608642578e-5,-2.568960189819336e-5,-2.580881118774414e-5,-2.5928020477294922e-5,-2.6047229766845703e-5,-2.6166439056396484e-5,-2.6285648345947266e-5,-2.6404857635498047e-5,-2.6524066925048828e-5,-2.664327621459961e-5,-2.676248550415039e-5,-2.6881694793701172e-5,-2.7000904083251953e-5,-2.7120113372802734e-5,-2.7239322662353516e-5,-2.7358531951904297e-5,-2.7477741241455078e-5,-2.759695053100586e-5,-2.771615982055664e-5,-2.7835369110107422e-5,-2.7954578399658203e-5,-2.8073787689208984e-5,-2.8192996978759766e-5,-2.8312206268310547e-5,-2.8431415557861328e-5,-2.855062484741211e-5,-2.866983413696289e-5,-2.8789043426513672e-5,-2.8908252716064453e-5,-2.9027462005615234e-5,-2.9146671295166016e-5,-2.9265880584716797e-5,-2.9385089874267578e-5,-2.950429916381836e-5,-2.962350845336914e-5,-2.9742717742919922e-5,-2.9861927032470703e-5,-2.9981136322021484e-5,-3.0100345611572266e-5,-3.0219554901123047e-5,-3.0338764190673828e-5,-3.045797348022461e-5,-3.057718276977539e-5,-3.069639205932617e-5,-3.081560134887695e-5,-3.0934810638427734e-5,-3.1054019927978516e-5,-3.11732292175293e-5,-3.129243850708008e-5,-3.141164779663086e-5,-3.153085708618164e-5,-3.165006637573242e-5,-3.17692756652832e-5,-3.1888484954833984e-5,-3.2007694244384766e-5,-3.212690353393555e-5,-3.224611282348633e-5,-3.236532211303711e-5,-3.248453140258789e-5,-3.260374069213867e-5,-3.272294998168945e-5,-3.2842159271240234e-5,-3.2961368560791016e-5,-3.314018249511719e-5,-3.325939178466797e-5,-3.337860107421875e-5,-3.349781036376953e-5,-3.361701965332031e-5,-3.3736228942871094e-5,-3.3855438232421875e-5,-3.3974647521972656e-5,-3.409385681152344e-5,-3.421306610107422e-5,-3.4332275390625e-5,-3.445148468017578e-5,-3.457069396972656e-5,-3.4689903259277344e-5,-3.4809112548828125e-5,-3.4928321838378906e-5,-3.504753112792969e-5,-3.516674041748047e-5,-3.528594970703125e-5,-3.540515899658203e-5,-3.552436828613281e-5,-3.5643577575683594e-5,-3.5762786865234375e-5,-3.5881996154785156e-5,-3.600120544433594e-5,-3.612041473388672e-5,-3.62396240234375e-5,-3.635883331298828e-5,-3.647804260253906e-5,-3.6597251892089844e-5,-3.6716461181640625e-5,-3.6835670471191406e-5,-3.695487976074219e-5,-3.707408905029297e-5,-3.719329833984375e-5,-3.731250762939453e-5,-3.743171691894531e-5,-3.7550926208496094e-5,-3.7670135498046875e-5,-3.7789344787597656e-5,-3.790855407714844e-5,-3.802776336669922e-5,-3.814697265625e-5,-3.826618194580078e-5,-3.838539123535156e-5,-3.8504600524902344e-5,-3.8623809814453125e-5,-3.8743019104003906e-5,-3.886222839355469e-5,-3.898143768310547e-5,-3.910064697265625e-5,-3.921985626220703e-5,-3.933906555175781e-5,-3.9458274841308594e-5,-3.9577484130859375e-5,-3.9696693420410156e-5,-3.981590270996094e-5,-3.993511199951172e-5,-4.00543212890625e-5,-4.017353057861328e-5,-4.029273986816406e-5,-4.0411949157714844e-5,-4.0531158447265625e-5,-4.0650367736816406e-5,-4.076957702636719e-5,-4.088878631591797e-5,-4.100799560546875e-5,-4.112720489501953e-5,-4.124641418457031e-5,-4.1365623474121094e-5,-4.1484832763671875e-5,-4.166364669799805e-5,-4.178285598754883e-5,-4.190206527709961e-5,-4.202127456665039e-5,-4.214048385620117e-5,-4.225969314575195e-5,-4.2378902435302734e-5,-4.2498111724853516e-5,-4.26173210144043e-5,-4.273653030395508e-5,-4.285573959350586e-5,-4.297494888305664e-5,-4.309415817260742e-5,-4.32133674621582e-5,-4.3332576751708984e-5,-4.3451786041259766e-5,-4.357099533081055e-5,-4.369020462036133e-5,-4.380941390991211e-5,-4.392862319946289e-5,-4.404783248901367e-5,-4.416704177856445e-5,-4.4286251068115234e-5,-4.4405460357666016e-5,-4.45246696472168e-5,-4.464387893676758e-5,-4.476308822631836e-5,-4.488229751586914e-5,-4.500150680541992e-5,-4.51207160949707e-5,-4.5239925384521484e-5,-4.5359134674072266e-5,-4.547834396362305e-5,-4.559755325317383e-5,-4.571676254272461e-5,-4.583597183227539e-5,-4.595518112182617e-5,-4.607439041137695e-5,-4.6193599700927734e-5,-4.6312808990478516e-5,-4.64320182800293e-5,-4.655122756958008e-5,-4.667043685913086e-5,-4.678964614868164e-5,-4.690885543823242e-5,-4.70280647277832e-5,-4.7147274017333984e-5,-4.7266483306884766e-5,-4.738569259643555e-5,-4.750490188598633e-5,-4.762411117553711e-5,-4.774332046508789e-5,-4.786252975463867e-5,-4.798173904418945e-5,-4.8100948333740234e-5,-4.8220157623291016e-5,-4.83393669128418e-5,-4.845857620239258e-5,-4.857778549194336e-5,-4.869699478149414e-5,-4.881620407104492e-5,-4.89354133605957e-5,-4.9054622650146484e-5,-4.9173831939697266e-5,-4.929304122924805e-5,-4.941225051879883e-5,-4.953145980834961e-5,-4.965066909790039e-5,-4.976987838745117e-5,-4.988908767700195e-5,-5.0008296966552734e-5,-5.0127506256103516e-5,-5.030632019042969e-5,-5.042552947998047e-5,-5.054473876953125e-5,-5.066394805908203e-5,-5.078315734863281e-5,-5.0902366638183594e-5,-5.1021575927734375e-5,-5.1140785217285156e-5,-5.125999450683594e-5,-5.137920379638672e-5,-5.14984130859375e-5,-5.161762237548828e-5,-5.173683166503906e-5,-5.1856040954589844e-5,-5.1975250244140625e-5,-5.2094459533691406e-5,-5.221366882324219e-5,-5.233287811279297e-5,-5.245208740234375e-5,-5.257129669189453e-5,-5.269050598144531e-5,-5.2809715270996094e-5,-5.2928924560546875e-5,-5.3048133850097656e-5,-5.316734313964844e-5,-5.328655242919922e-5,-5.340576171875e-5,-5.352497100830078e-5,-5.364418029785156e-5,-5.3763389587402344e-5,-5.3882598876953125e-5,-5.4001808166503906e-5,-5.412101745605469e-5,-5.424022674560547e-5,-5.435943603515625e-5,-5.447864532470703e-5,-5.459785461425781e-5,-5.4717063903808594e-5,-5.4836273193359375e-5,-5.4955482482910156e-5,-5.507469177246094e-5,-5.519390106201172e-5,-5.53131103515625e-5,-5.543231964111328e-5,-5.555152893066406e-5,-5.5670738220214844e-5,-5.5789947509765625e-5,-5.5909156799316406e-5,-5.602836608886719e-5,-5.614757537841797e-5,-5.626678466796875e-5,-5.638599395751953e-5,-5.650520324707031e-5,-5.6624412536621094e-5,-5.6743621826171875e-5,-5.6862831115722656e-5,-5.698204040527344e-5,-5.710124969482422e-5,-5.7220458984375e-5,-5.733966827392578e-5,-5.745887756347656e-5,-5.7578086853027344e-5,-5.7697296142578125e-5,-5.7816505432128906e-5,-5.793571472167969e-5,-5.805492401123047e-5,-5.817413330078125e-5,-5.829334259033203e-5,-5.841255187988281e-5,-5.8531761169433594e-5,-5.8650970458984375e-5,-5.8770179748535156e-5,-5.894899368286133e-5,-5.906820297241211e-5,-5.918741226196289e-5,-5.930662155151367e-5,-5.942583084106445e-5,-5.9545040130615234e-5,-5.9664249420166016e-5,-5.97834587097168e-5,-5.990266799926758e-5,-6.002187728881836e-5],"x":[-1.0e-7,-2.2004008016032063e-7,-3.4008016032064126e-7,-4.601202404809619e-7,-5.801603206412825e-7,-7.002004008016032e-7,-8.202404809619238e-7,-9.402805611222445e-7,-1.0603206412825652e-6,-1.1803607214428857e-6,-1.3004008016032064e-6,-1.420440881763527e-6,-1.5404809619238476e-6,-1.6605210420841683e-6,-1.780561122244489e-6,-1.9006012024048095e-6,-2.0206412825651304e-6,-2.1406813627254507e-6,-2.2607214428857714e-6,-2.380761523046092e-6,-2.500801603206413e-6,-2.6208416833667336e-6,-2.7408817635270543e-6,-2.8609218436873746e-6,-2.9809619238476953e-6,-3.101002004008016e-6,-3.2210420841683367e-6,-3.3410821643286574e-6,-3.461122244488978e-6,-3.5811623246492984e-6,-3.701202404809619e-6,-3.82124248496994e-6,-3.94128256513026e-6,-4.061322645290581e-6,-4.1813627254509016e-6,-4.301402805611222e-6,-4.421442885771543e-6,-4.541482965931864e-6,-4.661523046092184e-6,-4.781563126252505e-6,-4.901603206412826e-6,-5.0216432865731466e-6,-5.141683366733467e-6,-5.261723446893788e-6,-5.381763527054108e-6,-5.5018036072144286e-6,-5.621843687374749e-6,-5.74188376753507e-6,-5.861923847695391e-6,-5.981963927855711e-6,-6.102004008016032e-6,-6.222044088176353e-6,-6.3420841683366735e-6,-6.462124248496994e-6,-6.582164328657315e-6,-6.702204408817636e-6,-6.8222444889779556e-6,-6.942284569138276e-6,-7.062324649298597e-6,-7.182364729458918e-6,-7.302404809619238e-6,-7.422444889779559e-6,-7.54248496993988e-6,-7.6625250501002e-6,-7.782565130260521e-6,-7.902605210420841e-6,-8.022645290581163e-6,-8.142685370741483e-6,-8.262725450901804e-6,-8.382765531062124e-6,-8.502805611222446e-6,-8.622845691382765e-6,-8.742885771543087e-6,-8.862925851703407e-6,-8.982965931863727e-6,-9.103006012024048e-6,-9.223046092184368e-6,-9.34308617234469e-6,-9.46312625250501e-6,-9.583166332665331e-6,-9.703206412825651e-6,-9.823246492985973e-6,-9.943286573146292e-6,-1.0063326653306614e-5,-1.0183366733466934e-5,-1.0303406813627254e-5,-1.0423446893787575e-5,-1.0543486973947895e-5,-1.0663527054108217e-5,-1.0783567134268537e-5,-1.0903607214428858e-5,-1.1023647294589178e-5,-1.11436873747495e-5,-1.126372745490982e-5,-1.1383767535070141e-5,-1.150380761523046e-5,-1.1623847695390782e-5,-1.1743887775551102e-5,-1.1863927855711422e-5,-1.1983967935871744e-5,-1.2104008016032064e-5,-1.2224048096192385e-5,-1.2344088176352705e-5,-1.2464128256513026e-5,-1.2584168336673346e-5,-1.2704208416833668e-5,-1.2824248496993988e-5,-1.294428857715431e-5,-1.306432865731463e-5,-1.3184368737474949e-5,-1.330440881763527e-5,-1.342444889779559e-5,-1.3544488977955912e-5,-1.3664529058116232e-5,-1.3784569138276553e-5,-1.3904609218436873e-5,-1.4024649298597195e-5,-1.4144689378757515e-5,-1.4264729458917836e-5,-1.4384769539078156e-5,-1.4504809619238478e-5,-1.4624849699398798e-5,-1.4744889779559117e-5,-1.4864929859719439e-5,-1.4984969939879759e-5,-1.510501002004008e-5,-1.52250501002004e-5,-1.534509018036072e-5,-1.5465130260521043e-5,-1.5585170340681363e-5,-1.5705210420841683e-5,-1.5825250501002003e-5,-1.5945290581162326e-5,-1.6065330661322646e-5,-1.6185370741482966e-5,-1.6305410821643286e-5,-1.6425450901803606e-5,-1.654549098196393e-5,-1.666553106212425e-5,-1.678557114228457e-5,-1.690561122244489e-5,-1.7025651302605212e-5,-1.7145691382765532e-5,-1.726573146292585e-5,-1.738577154308617e-5,-1.750581162324649e-5,-1.7625851703406815e-5,-1.7745891783567134e-5,-1.7865931863727454e-5,-1.7985971943887774e-5,-1.8106012024048097e-5,-1.8226052104208417e-5,-1.8346092184368737e-5,-1.8466132264529057e-5,-1.858617234468938e-5,-1.87062124248497e-5,-1.882625250501002e-5,-1.894629258517034e-5,-1.906633266533066e-5,-1.9186372745490983e-5,-1.9306412825651303e-5,-1.9426452905811623e-5,-1.9546492985971943e-5,-1.9666533066132266e-5,-1.9786573146292586e-5,-1.9906613226452906e-5,-2.0026653306613225e-5,-2.014669338677355e-5,-2.026673346693387e-5,-2.038677354709419e-5,-2.0506813627254508e-5,-2.0626853707414828e-5,-2.074689378757515e-5,-2.086693386773547e-5,-2.098697394789579e-5,-2.110701402805611e-5,-2.1227054108216434e-5,-2.1347094188376754e-5,-2.1467134268537074e-5,-2.1587174348697394e-5,-2.1707214428857717e-5,-2.1827254509018037e-5,-2.1947294589178357e-5,-2.2067334669338677e-5,-2.2187374749498997e-5,-2.230741482965932e-5,-2.242745490981964e-5,-2.254749498997996e-5,-2.266753507014028e-5,-2.2787575150300603e-5,-2.2907615230460923e-5,-2.3027655310621242e-5,-2.3147695390781562e-5,-2.3267735470941882e-5,-2.3387775551102205e-5,-2.3507815631262525e-5,-2.3627855711422845e-5,-2.3747895791583165e-5,-2.3867935871743488e-5,-2.3987975951903808e-5,-2.4108016032064128e-5,-2.4228056112224448e-5,-2.434809619238477e-5,-2.446813627254509e-5,-2.458817635270541e-5,-2.470821643286573e-5,-2.482825651302605e-5,-2.4948296593186374e-5,-2.5068336673346694e-5,-2.5188376753507014e-5,-2.5308416833667333e-5,-2.5428456913827657e-5,-2.5548496993987977e-5,-2.5668537074148296e-5,-2.5788577154308616e-5,-2.590861723446894e-5,-2.602865731462926e-5,-2.614869739478958e-5,-2.62687374749499e-5,-2.638877755511022e-5,-2.6508817635270542e-5,-2.6628857715430862e-5,-2.6748897795591182e-5,-2.6868937875751502e-5,-2.6988977955911825e-5,-2.7109018036072145e-5,-2.7229058116232465e-5,-2.7349098196392785e-5,-2.7469138276553105e-5,-2.7589178356713428e-5,-2.7709218436873748e-5,-2.7829258517034068e-5,-2.7949298597194387e-5,-2.806933867735471e-5,-2.818937875751503e-5,-2.830941883767535e-5,-2.842945891783567e-5,-2.8549498997995993e-5,-2.8669539078156313e-5,-2.8789579158316633e-5,-2.8909619238476953e-5,-2.9029659318637273e-5,-2.9149699398797596e-5,-2.9269739478957916e-5,-2.9389779559118236e-5,-2.9509819639278556e-5,-2.962985971943888e-5,-2.97498997995992e-5,-2.986993987975952e-5,-2.998997995991984e-5,-3.0110020040080162e-5,-3.0230060120240482e-5,-3.03501002004008e-5,-3.047014028056112e-5,-3.0590180360721445e-5,-3.0710220440881765e-5,-3.0830260521042084e-5,-3.0950300601202404e-5,-3.1070340681362724e-5,-3.1190380761523044e-5,-3.1310420841683364e-5,-3.143046092184369e-5,-3.155050100200401e-5,-3.167054108216433e-5,-3.179058116232465e-5,-3.191062124248497e-5,-3.203066132264529e-5,-3.215070140280561e-5,-3.227074148296593e-5,-3.239078156312625e-5,-3.2510821643286576e-5,-3.2630861723446896e-5,-3.2750901803607216e-5,-3.2870941883767536e-5,-3.2990981963927856e-5,-3.3111022044088175e-5,-3.3231062124248495e-5,-3.3351102204408815e-5,-3.3471142284569135e-5,-3.359118236472946e-5,-3.371122244488978e-5,-3.38312625250501e-5,-3.395130260521042e-5,-3.407134268537074e-5,-3.419138276553106e-5,-3.431142284569138e-5,-3.44314629258517e-5,-3.455150300601203e-5,-3.467154308617235e-5,-3.479158316633267e-5,-3.491162324649299e-5,-3.503166332665331e-5,-3.515170340681363e-5,-3.527174348697395e-5,-3.5391783567134266e-5,-3.5511823647294586e-5,-3.563186372745491e-5,-3.575190380761523e-5,-3.587194388777555e-5,-3.599198396793587e-5,-3.611202404809619e-5,-3.623206412825651e-5,-3.635210420841683e-5,-3.647214428857715e-5,-3.659218436873747e-5,-3.67122244488978e-5,-3.683226452905812e-5,-3.695230460921844e-5,-3.707234468937876e-5,-3.719238476953908e-5,-3.73124248496994e-5,-3.743246492985972e-5,-3.755250501002004e-5,-3.767254509018036e-5,-3.7792585170340684e-5,-3.7912625250501004e-5,-3.8032665330661324e-5,-3.8152705410821644e-5,-3.8272745490981964e-5,-3.8392785571142283e-5,-3.85128256513026e-5,-3.863286573146292e-5,-3.875290581162325e-5,-3.887294589178357e-5,-3.899298597194389e-5,-3.911302605210421e-5,-3.923306613226453e-5,-3.935310621242485e-5,-3.947314629258517e-5,-3.959318637274549e-5,-3.971322645290581e-5,-3.9833266533066135e-5,-3.9953306613226455e-5,-4.0073346693386775e-5,-4.0193386773547095e-5,-4.0313426853707415e-5,-4.0433466933867735e-5,-4.0553507014028055e-5,-4.0673547094188374e-5,-4.0793587174348694e-5,-4.091362725450902e-5,-4.103366733466934e-5,-4.115370741482966e-5,-4.127374749498998e-5,-4.13937875751503e-5,-4.151382765531062e-5,-4.163386773547094e-5,-4.175390781563126e-5,-4.187394789579158e-5,-4.1993987975951907e-5,-4.2114028056112226e-5,-4.2234068136272546e-5,-4.2354108216432866e-5,-4.2474148296593186e-5,-4.2594188376753506e-5,-4.2714228456913826e-5,-4.2834268537074146e-5,-4.295430861723447e-5,-4.307434869739479e-5,-4.319438877755511e-5,-4.331442885771543e-5,-4.343446893787575e-5,-4.355450901803607e-5,-4.367454909819639e-5,-4.379458917835671e-5,-4.391462925851703e-5,-4.403466933867736e-5,-4.415470941883768e-5,-4.4274749498998e-5,-4.439478957915832e-5,-4.451482965931864e-5,-4.463486973947896e-5,-4.475490981963928e-5,-4.48749498997996e-5,-4.499498997995992e-5,-4.511503006012024e-5,-4.523507014028056e-5,-4.535511022044088e-5,-4.54751503006012e-5,-4.559519038076152e-5,-4.571523046092184e-5,-4.583527054108216e-5,-4.595531062124248e-5,-4.60753507014028e-5,-4.619539078156313e-5,-4.631543086172345e-5,-4.643547094188377e-5,-4.655551102204409e-5,-4.667555110220441e-5,-4.679559118236473e-5,-4.691563126252505e-5,-4.703567134268537e-5,-4.7155711422845695e-5,-4.7275751503006014e-5,-4.7395791583166334e-5,-4.7515831663326654e-5,-4.7635871743486974e-5,-4.7755911823647294e-5,-4.7875951903807614e-5,-4.7995991983967934e-5,-4.8116032064128254e-5,-4.823607214428858e-5,-4.83561122244489e-5,-4.847615230460922e-5,-4.859619238476954e-5,-4.871623246492986e-5,-4.883627254509018e-5,-4.89563126252505e-5,-4.907635270541082e-5,-4.919639278557114e-5,-4.9316432865731466e-5,-4.9436472945891786e-5,-4.9556513026052105e-5,-4.9676553106212425e-5,-4.9796593186372745e-5,-4.9916633266533065e-5,-5.0036673346693385e-5,-5.0156713426853705e-5,-5.027675350701403e-5,-5.039679358717435e-5,-5.051683366733467e-5,-5.063687374749499e-5,-5.075691382765531e-5,-5.087695390781563e-5,-5.099699398797595e-5,-5.111703406813627e-5,-5.123707414829659e-5,-5.135711422845692e-5,-5.147715430861724e-5,-5.159719438877756e-5,-5.1717234468937877e-5,-5.1837274549098196e-5,-5.1957314629258516e-5,-5.2077354709418836e-5,-5.2197394789579156e-5,-5.2317434869739476e-5,-5.24374749498998e-5,-5.255751503006012e-5,-5.267755511022044e-5,-5.279759519038076e-5,-5.291763527054108e-5,-5.30376753507014e-5,-5.315771543086172e-5,-5.327775551102204e-5,-5.339779559118236e-5,-5.351783567134269e-5,-5.363787575150301e-5,-5.375791583166333e-5,-5.387795591182365e-5,-5.399799599198397e-5,-5.411803607214429e-5,-5.423807615230461e-5,-5.435811623246493e-5,-5.4478156312625254e-5,-5.4598196392785574e-5,-5.4718236472945894e-5,-5.4838276553106213e-5,-5.495831663326653e-5,-5.507835671342685e-5,-5.519839679358717e-5,-5.531843687374749e-5,-5.543847695390781e-5,-5.555851703406814e-5,-5.567855711422846e-5,-5.579859719438878e-5,-5.59186372745491e-5,-5.603867735470942e-5,-5.615871743486974e-5,-5.627875751503006e-5,-5.639879759519038e-5,-5.65188376753507e-5,-5.6638877755511025e-5,-5.6758917835671345e-5,-5.6878957915831665e-5,-5.6998997995991985e-5,-5.7119038076152304e-5,-5.7239078156312624e-5,-5.7359118236472944e-5,-5.7479158316633264e-5,-5.7599198396793584e-5,-5.771923847695391e-5,-5.783927855711423e-5,-5.795931863727455e-5,-5.807935871743487e-5,-5.819939879759519e-5,-5.831943887775551e-5,-5.843947895791583e-5,-5.855951903807615e-5,-5.8679559118236476e-5,-5.8799599198396796e-5,-5.8919639278557116e-5,-5.9039679358717436e-5,-5.9159719438877756e-5,-5.9279759519038076e-5,-5.9399799599198395e-5,-5.9519839679358715e-5,-5.9639879759519035e-5,-5.975991983967936e-5,-5.987995991983968e-5,-6.0e-5]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_tiny.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_tiny.json
new file mode 100644
index 000000000000..e7790540f2c1
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/negative_tiny.json
@@ -0,0 +1 @@
+{"expected":[-0.00010001659393310547,-0.00010180473327636719,-0.0001035928726196289,-0.00010544061660766602,-0.00010722875595092773,-0.00010901689529418945,-0.00011080503463745117,-0.00011265277862548828,-0.00011444091796875,-0.00011622905731201172,-0.00011801719665527344,-0.00011986494064331055,-0.00012165307998657227,-0.00012350082397460938,-0.0001252889633178711,-0.0001270771026611328,-0.00012886524200439453,-0.00013065338134765625,-0.00013244152069091797,-0.0001342296600341797,-0.0001360177993774414,-0.0001379251480102539,-0.00013971328735351562,-0.00014150142669677734,-0.00014328956604003906,-0.00014507770538330078,-0.0001468658447265625,-0.00014865398406982422,-0.00015044212341308594,-0.00015234947204589844,-0.00015413761138916016,-0.00015592575073242188,-0.0001577138900756836,-0.0001595020294189453,-0.00016129016876220703,-0.00016307830810546875,-0.00016498565673828125,-0.00016677379608154297,-0.0001685619354248047,-0.0001703500747680664,-0.00017213821411132812,-0.00017392635345458984,-0.00017571449279785156,-0.00017750263214111328,-0.00017940998077392578,-0.0001811981201171875,-0.00018298625946044922,-0.00018477439880371094,-0.00018656253814697266,-0.00018835067749023438,-0.0001901388168334961,-0.0001919269561767578,-0.0001938343048095703,-0.00019562244415283203,-0.00019741058349609375,-0.00019919872283935547,-0.0002009868621826172,-0.0002027750015258789,-0.00020456314086914062,-0.00020647048950195312,-0.00020825862884521484,-0.00021004676818847656,-0.00021183490753173828,-0.000213623046875,-0.00021541118621826172,-0.00021719932556152344,-0.00021898746490478516,-0.00022089481353759766,-0.00022268295288085938,-0.0002244710922241211,-0.0002262592315673828,-0.00022804737091064453,-0.00022983551025390625,-0.00023162364959716797,-0.0002334117889404297,-0.0002353191375732422,-0.0002371072769165039,-0.00023889541625976562,-0.00024068355560302734,-0.00024247169494628906,-0.00024437904357910156,-0.0002460479736328125,-0.000247955322265625,-0.00024962425231933594,-0.00025153160095214844,-0.0002532005310058594,-0.0002551078796386719,-0.0002570152282714844,-0.0002586841583251953,-0.0002605915069580078,-0.00026226043701171875,-0.00026416778564453125,-0.0002658367156982422,-0.0002677440643310547,-0.0002696514129638672,-0.0002713203430175781,-0.0002732276916503906,-0.00027489662170410156,-0.00027680397033691406,-0.000278472900390625,-0.0002803802490234375,-0.00028204917907714844,-0.00028395652770996094,-0.00028586387634277344,-0.0002875328063964844,-0.0002894401550292969,-0.0002911090850830078,-0.0002930164337158203,-0.00029468536376953125,-0.00029659271240234375,-0.00029850006103515625,-0.0003001689910888672,-0.0003020763397216797,-0.0003037452697753906,-0.0003056526184082031,-0.00030732154846191406,-0.00030922889709472656,-0.00031113624572753906,-0.00031280517578125,-0.0003147125244140625,-0.00031638145446777344,-0.00031828880310058594,-0.0003199577331542969,-0.0003218650817871094,-0.0003235340118408203,-0.0003254413604736328,-0.0003273487091064453,-0.00032901763916015625,-0.00033092498779296875,-0.0003325939178466797,-0.0003345012664794922,-0.0003361701965332031,-0.0003380775451660156,-0.0003399848937988281,-0.00034165382385253906,-0.00034356117248535156,-0.0003452301025390625,-0.000347137451171875,-0.00034880638122558594,-0.00035071372985839844,-0.00035262107849121094,-0.0003542900085449219,-0.0003561973571777344,-0.0003578662872314453,-0.0003597736358642578,-0.00036144256591796875,-0.00036334991455078125,-0.0003650188446044922,-0.0003669261932373047,-0.0003688335418701172,-0.0003705024719238281,-0.0003724098205566406,-0.00037407875061035156,-0.00037598609924316406,-0.000377655029296875,-0.0003795623779296875,-0.0003814697265625,-0.00038313865661621094,-0.00038504600524902344,-0.0003867149353027344,-0.0003886222839355469,-0.0003902912139892578,-0.0003921985626220703,-0.0003941059112548828,-0.00039577484130859375,-0.00039768218994140625,-0.0003993511199951172,-0.0004012584686279297,-0.0004029273986816406,-0.0004048347473144531,-0.00040650367736816406,-0.00040841102600097656,-0.00041031837463378906,-0.0004119873046875,-0.0004138946533203125,-0.00041556358337402344,-0.00041747093200683594,-0.0004191398620605469,-0.0004210472106933594,-0.0004229545593261719,-0.0004246234893798828,-0.0004265308380126953,-0.00042819976806640625,-0.00043010711669921875,-0.0004317760467529297,-0.0004336833953857422,-0.0004353523254394531,-0.0004372596740722656,-0.0004391670227050781,-0.00044083595275878906,-0.00044274330139160156,-0.0004444122314453125,-0.000446319580078125,-0.00044798851013183594,-0.00044989585876464844,-0.00045180320739746094,-0.0004534721374511719,-0.0004553794860839844,-0.0004570484161376953,-0.0004589557647705078,-0.00046062469482421875,-0.00046253204345703125,-0.00046443939208984375,-0.0004661083221435547,-0.0004680156707763672,-0.0004696846008300781,-0.0004715919494628906,-0.00047326087951660156,-0.00047516822814941406,-0.000476837158203125,-0.0004787445068359375,-0.00048065185546875,-0.00048232078552246094,-0.00048422813415527344,-0.0004858970642089844,-0.0004878044128417969,-0.0004897117614746094,-0.0004916191101074219,-0.0004930496215820312,-0.0004949569702148438,-0.0004968643188476562,-0.0004987716674804688,-0.0005002021789550781,-0.0005021095275878906,-0.0005040168762207031,-0.0005059242248535156,-0.0005078315734863281,-0.0005092620849609375,-0.00051116943359375,-0.0005130767822265625,-0.000514984130859375,-0.0005164146423339844,-0.0005183219909667969,-0.0005202293395996094,-0.0005221366882324219,-0.0005240440368652344,-0.0005254745483398438,-0.0005273818969726562,-0.0005292892456054688,-0.0005311965942382812,-0.0005331039428710938,-0.0005345344543457031,-0.0005364418029785156,-0.0005383491516113281,-0.0005402565002441406,-0.00054168701171875,-0.0005435943603515625,-0.000545501708984375,-0.0005474090576171875,-0.00054931640625,-0.0005507469177246094,-0.0005526542663574219,-0.0005545616149902344,-0.0005564689636230469,-0.0005578994750976562,-0.0005598068237304688,-0.0005617141723632812,-0.0005636215209960938,-0.0005655288696289062,-0.0005669593811035156,-0.0005688667297363281,-0.0005707740783691406,-0.0005726814270019531,-0.0005741119384765625,-0.000576019287109375,-0.0005779266357421875,-0.000579833984375,-0.0005817413330078125,-0.0005831718444824219,-0.0005850791931152344,-0.0005869865417480469,-0.0005888938903808594,-0.0005908012390136719,-0.0005922317504882812,-0.0005941390991210938,-0.0005960464477539062,-0.0005979537963867188,-0.0005993843078613281,-0.0006012916564941406,-0.0006031990051269531,-0.0006051063537597656,-0.0006070137023925781,-0.0006084442138671875,-0.0006103515625,-0.0006122589111328125,-0.000614166259765625,-0.0006155967712402344,-0.0006175041198730469,-0.0006194114685058594,-0.0006213188171386719,-0.0006232261657714844,-0.0006246566772460938,-0.0006265640258789062,-0.0006284713745117188,-0.0006303787231445312,-0.0006322860717773438,-0.0006337165832519531,-0.0006356239318847656,-0.0006375312805175781,-0.0006394386291503906,-0.000640869140625,-0.0006427764892578125,-0.000644683837890625,-0.0006465911865234375,-0.00064849853515625,-0.0006499290466308594,-0.0006518363952636719,-0.0006537437438964844,-0.0006556510925292969,-0.0006570816040039062,-0.0006589889526367188,-0.0006608963012695312,-0.0006628036499023438,-0.0006647109985351562,-0.0006661415100097656,-0.0006680488586425781,-0.0006699562072753906,-0.0006718635559082031,-0.0006737709045410156,-0.000675201416015625,-0.0006771087646484375,-0.00067901611328125,-0.0006809234619140625,-0.0006823539733886719,-0.0006842613220214844,-0.0006861686706542969,-0.0006880760192871094,-0.0006899833679199219,-0.0006914138793945312,-0.0006933212280273438,-0.0006952285766601562,-0.0006971359252929688,-0.0006985664367675781,-0.0007004737854003906,-0.0007023811340332031,-0.0007042884826660156,-0.0007061958312988281,-0.0007076263427734375,-0.00070953369140625,-0.0007114410400390625,-0.000713348388671875,-0.0007152557373046875,-0.0007166862487792969,-0.0007185935974121094,-0.0007205009460449219,-0.0007224082946777344,-0.0007238388061523438,-0.0007257461547851562,-0.0007276535034179688,-0.0007295608520507812,-0.0007314682006835938,-0.0007328987121582031,-0.0007348060607910156,-0.0007367134094238281,-0.0007386207580566406,-0.00074005126953125,-0.0007419586181640625,-0.000743865966796875,-0.0007457733154296875,-0.0007476806640625,-0.0007491111755371094,-0.0007510185241699219,-0.0007529258728027344,-0.0007548332214355469,-0.0007567405700683594,-0.0007581710815429688,-0.0007600784301757812,-0.0007619857788085938,-0.0007638931274414062,-0.0007653236389160156,-0.0007672309875488281,-0.0007691383361816406,-0.0007710456848144531,-0.0007729530334472656,-0.000774383544921875,-0.0007762908935546875,-0.0007781982421875,-0.0007801055908203125,-0.0007815361022949219,-0.0007834434509277344,-0.0007853507995605469,-0.0007872581481933594,-0.0007891654968261719,-0.0007905960083007812,-0.0007925033569335938,-0.0007944107055664062,-0.0007963180541992188,-0.0007982254028320312,-0.0007996559143066406,-0.0008015632629394531,-0.0008034706115722656,-0.0008053779602050781,-0.0008068084716796875,-0.0008087158203125,-0.0008106231689453125,-0.000812530517578125,-0.0008144378662109375,-0.0008158683776855469,-0.0008177757263183594,-0.0008196830749511719,-0.0008215904235839844,-0.0008230209350585938,-0.0008249282836914062,-0.0008268356323242188,-0.0008287429809570312,-0.0008306503295898438,-0.0008320808410644531,-0.0008339881896972656,-0.0008358955383300781,-0.0008378028869628906,-0.0008397102355957031,-0.0008411407470703125,-0.000843048095703125,-0.0008449554443359375,-0.00084686279296875,-0.0008482933044433594,-0.0008502006530761719,-0.0008521080017089844,-0.0008540153503417969,-0.0008559226989746094,-0.0008573532104492188,-0.0008592605590820312,-0.0008611679077148438,-0.0008630752563476562,-0.0008645057678222656,-0.0008664131164550781,-0.0008683204650878906,-0.0008702278137207031,-0.0008721351623535156,-0.000873565673828125,-0.0008754730224609375,-0.00087738037109375,-0.0008792877197265625,-0.000881195068359375,-0.0008826255798339844,-0.0008845329284667969,-0.0008864402770996094,-0.0008883476257324219,-0.0008897781372070312,-0.0008916854858398438,-0.0008935928344726562,-0.0008955001831054688,-0.0008974075317382812,-0.0008988380432128906,-0.0009007453918457031,-0.0009026527404785156,-0.0009045600891113281,-0.0009059906005859375,-0.00090789794921875,-0.0009098052978515625,-0.000911712646484375,-0.0009136199951171875,-0.0009150505065917969,-0.0009169578552246094,-0.0009188652038574219,-0.0009207725524902344,-0.0009226799011230469,-0.0009241104125976562,-0.0009260177612304688,-0.0009279251098632812,-0.0009298324584960938,-0.0009312629699707031,-0.0009331703186035156,-0.0009350776672363281,-0.0009369850158691406,-0.0009388923645019531,-0.0009403228759765625,-0.000942230224609375,-0.0009441375732421875,-0.000946044921875,-0.0009474754333496094,-0.0009493827819824219,-0.0009512901306152344,-0.0009531974792480469,-0.0009551048278808594,-0.0009565353393554688,-0.0009584426879882812,-0.0009603500366210938,-0.0009622573852539062,-0.0009641647338867188,-0.0009655952453613281,-0.0009675025939941406,-0.0009694099426269531,-0.0009713172912597656,-0.000972747802734375,-0.0009746551513671875,-0.0009765625,-0.0009784698486328125,-0.000980377197265625,-0.0009822845458984375,-0.00098419189453125,-0.0009851455688476562,-0.0009870529174804688,-0.0009889602661132812,-0.0009908676147460938,-0.0009927749633789062,-0.0009946823120117188,-0.0009965896606445312,-0.0009984970092773438,-0.0010004043579101562],"x":[-0.0001,-0.00010180360721442886,-0.00010360721442885771,-0.00010541082164328658,-0.00010721442885771543,-0.00010901803607214429,-0.00011082164328657314,-0.00011262525050100201,-0.00011442885771543086,-0.00011623246492985972,-0.00011803607214428858,-0.00011983967935871744,-0.00012164328657314629,-0.00012344689378757516,-0.000125250501002004,-0.00012705410821643286,-0.00012885771543086173,-0.00013066132264529057,-0.00013246492985971944,-0.0001342685370741483,-0.00013607214428857715,-0.00013787575150300601,-0.00013967935871743488,-0.00014148296593186372,-0.0001432865731462926,-0.00014509018036072146,-0.0001468937875751503,-0.00014869739478957916,-0.000150501002004008,-0.00015230460921843687,-0.00015410821643286574,-0.00015591182364729458,-0.00015771543086172345,-0.0001595190380761523,-0.00016132264529058115,-0.00016312625250501002,-0.0001649298597194389,-0.00016673346693386773,-0.0001685370741482966,-0.00017034068136272546,-0.0001721442885771543,-0.00017394789579158317,-0.00017575150300601204,-0.00017755511022044088,-0.00017935871743486975,-0.00018116232464929859,-0.00018296593186372745,-0.00018476953907815632,-0.00018657314629258516,-0.00018837675350701403,-0.0001901803607214429,-0.00019198396793587173,-0.0001937875751503006,-0.00019559118236472947,-0.0001973947895791583,-0.00019919839679358718,-0.00020100200400801604,-0.00020280561122244488,-0.00020460921843687375,-0.00020641282565130262,-0.00020821643286573146,-0.00021002004008016033,-0.00021182364729458917,-0.00021362725450901803,-0.0002154308617234469,-0.00021723446893787574,-0.0002190380761523046,-0.00022084168336673348,-0.00022264529058116232,-0.00022444889779559118,-0.00022625250501002005,-0.0002280561122244489,-0.00022985971943887776,-0.00023166332665330663,-0.00023346693386773547,-0.00023527054108216433,-0.0002370741482965932,-0.00023887775551102204,-0.0002406813627254509,-0.00024248496993987975,-0.0002442885771543086,-0.00024609218436873745,-0.00024789579158316635,-0.0002496993987975952,-0.00025150300601202403,-0.0002533066132264529,-0.00025511022044088176,-0.0002569138276553106,-0.0002587174348697395,-0.00026052104208416834,-0.0002623246492985972,-0.0002641282565130261,-0.0002659318637274549,-0.00026773547094188375,-0.00026953907815631265,-0.0002713426853707415,-0.00027314629258517033,-0.0002749498997995992,-0.00027675350701402806,-0.0002785571142284569,-0.0002803607214428858,-0.00028216432865731464,-0.0002839679358717435,-0.0002857715430861723,-0.0002875751503006012,-0.00028937875751503005,-0.0002911823647294589,-0.0002929859719438878,-0.00029478957915831663,-0.00029659318637274547,-0.00029839679358717436,-0.0003002004008016032,-0.00030200400801603204,-0.00030380761523046094,-0.0003056112224448898,-0.0003074148296593186,-0.0003092184368737475,-0.00031102204408817635,-0.0003128256513026052,-0.0003146292585170341,-0.0003164328657314629,-0.00031823647294589177,-0.00032004008016032066,-0.0003218436873747495,-0.00032364729458917834,-0.00032545090180360724,-0.0003272545090180361,-0.0003290581162324649,-0.0003308617234468938,-0.00033266533066132265,-0.0003344689378757515,-0.0003362725450901804,-0.0003380761523046092,-0.00033987975951903807,-0.00034168336673346696,-0.0003434869739478958,-0.00034529058116232464,-0.0003470941883767535,-0.0003488977955911824,-0.0003507014028056112,-0.00035250501002004006,-0.00035430861723446895,-0.0003561122244488978,-0.00035791583166332663,-0.0003597194388777555,-0.00036152304609218436,-0.0003633266533066132,-0.0003651302605210421,-0.00036693386773547094,-0.0003687374749498998,-0.0003705410821643287,-0.0003723446893787575,-0.00037414829659318635,-0.00037595190380761525,-0.0003777555110220441,-0.00037955911823647293,-0.0003813627254509018,-0.00038316633266533066,-0.0003849699398797595,-0.0003867735470941884,-0.00038857715430861724,-0.0003903807615230461,-0.00039218436873747497,-0.0003939879759519038,-0.00039579158316633265,-0.00039759519038076155,-0.0003993987975951904,-0.00040120240480961923,-0.0004030060120240481,-0.00040480961923847696,-0.0004066132264529058,-0.00040841683366733464,-0.00041022044088176354,-0.0004120240480961924,-0.0004138276553106212,-0.0004156312625250501,-0.00041743486973947895,-0.0004192384769539078,-0.0004210420841683367,-0.0004228456913827655,-0.00042464929859719437,-0.00042645290581162326,-0.0004282565130260521,-0.00043006012024048094,-0.00043186372745490984,-0.0004336673346693387,-0.0004354709418837675,-0.0004372745490981964,-0.00043907815631262525,-0.0004408817635270541,-0.000442685370741483,-0.0004444889779559118,-0.00044629258517034067,-0.00044809619238476956,-0.0004498997995991984,-0.00045170340681362724,-0.00045350701402805614,-0.000455310621242485,-0.0004571142284569138,-0.0004589178356713427,-0.00046072144288577155,-0.0004625250501002004,-0.0004643286573146293,-0.0004661322645290581,-0.00046793587174348696,-0.0004697394789579158,-0.0004715430861723447,-0.00047334669338677354,-0.0004751503006012024,-0.0004769539078156313,-0.0004787575150300601,-0.00048056112224448895,-0.00048236472945891785,-0.0004841683366733467,-0.00048597194388777553,-0.0004877755511022044,-0.0004895791583166333,-0.0004913827655310621,-0.000493186372745491,-0.0004949899799599199,-0.0004967935871743487,-0.0004985971943887776,-0.0005004008016032064,-0.0005022044088176353,-0.0005040080160320641,-0.0005058116232464929,-0.0005076152304609218,-0.0005094188376753507,-0.0005112224448897795,-0.0005130260521042084,-0.0005148296593186373,-0.0005166332665330661,-0.000518436873747495,-0.0005202404809619239,-0.0005220440881763527,-0.0005238476953907816,-0.0005256513026052104,-0.0005274549098196392,-0.0005292585170340681,-0.000531062124248497,-0.0005328657314629258,-0.0005346693386773547,-0.0005364729458917836,-0.0005382765531062124,-0.0005400801603206413,-0.0005418837675350702,-0.000543687374749499,-0.0005454909819639279,-0.0005472945891783567,-0.0005490981963927855,-0.0005509018036072144,-0.0005527054108216433,-0.0005545090180360721,-0.000556312625250501,-0.0005581162324649299,-0.0005599198396793587,-0.0005617234468937876,-0.0005635270541082165,-0.0005653306613226453,-0.0005671342685370742,-0.000568937875751503,-0.0005707414829659318,-0.0005725450901803607,-0.0005743486973947896,-0.0005761523046092184,-0.0005779559118236473,-0.0005797595190380762,-0.000581563126252505,-0.0005833667334669339,-0.0005851703406813628,-0.0005869739478957916,-0.0005887775551102204,-0.0005905811623246493,-0.0005923847695390781,-0.000594188376753507,-0.0005959919839679359,-0.0005977955911823647,-0.0005995991983967936,-0.0006014028056112225,-0.0006032064128256513,-0.0006050100200400802,-0.0006068136272545091,-0.0006086172344689379,-0.0006104208416833667,-0.0006122244488977956,-0.0006140280561122244,-0.0006158316633266533,-0.0006176352705410822,-0.000619438877755511,-0.0006212424849699399,-0.0006230460921843687,-0.0006248496993987976,-0.0006266533066132265,-0.0006284569138276553,-0.0006302605210420842,-0.000632064128256513,-0.0006338677354709418,-0.0006356713426853707,-0.0006374749498997996,-0.0006392785571142284,-0.0006410821643286573,-0.0006428857715430862,-0.000644689378757515,-0.0006464929859719439,-0.0006482965931863728,-0.0006501002004008016,-0.0006519038076152305,-0.0006537074148296593,-0.0006555110220440881,-0.000657314629258517,-0.0006591182364729459,-0.0006609218436873747,-0.0006627254509018036,-0.0006645290581162325,-0.0006663326653306613,-0.0006681362725450902,-0.0006699398797595191,-0.0006717434869739479,-0.0006735470941883768,-0.0006753507014028056,-0.0006771543086172344,-0.0006789579158316633,-0.0006807615230460922,-0.000682565130260521,-0.0006843687374749499,-0.0006861723446893788,-0.0006879759519038076,-0.0006897795591182365,-0.0006915831663326654,-0.0006933867735470942,-0.000695190380761523,-0.0006969939879759519,-0.0006987975951903807,-0.0007006012024048096,-0.0007024048096192385,-0.0007042084168336673,-0.0007060120240480962,-0.0007078156312625251,-0.0007096192384769539,-0.0007114228456913828,-0.0007132264529058117,-0.0007150300601202405,-0.0007168336673346693,-0.0007186372745490982,-0.000720440881763527,-0.0007222444889779559,-0.0007240480961923848,-0.0007258517034068136,-0.0007276553106212425,-0.0007294589178356714,-0.0007312625250501002,-0.0007330661322645291,-0.000734869739478958,-0.0007366733466933868,-0.0007384769539078156,-0.0007402805611222445,-0.0007420841683366733,-0.0007438877755511022,-0.000745691382765531,-0.0007474949899799599,-0.0007492985971943888,-0.0007511022044088176,-0.0007529058116232465,-0.0007547094188376754,-0.0007565130260521042,-0.000758316633266533,-0.000760120240480962,-0.0007619238476953907,-0.0007637274549098196,-0.0007655310621242485,-0.0007673346693386773,-0.0007691382765531062,-0.0007709418837675351,-0.0007727454909819639,-0.0007745490981963928,-0.0007763527054108217,-0.0007781563126252505,-0.0007799599198396794,-0.0007817635270541082,-0.000783567134268537,-0.0007853707414829659,-0.0007871743486973948,-0.0007889779559118236,-0.0007907815631262525,-0.0007925851703406814,-0.0007943887775551102,-0.0007961923847695391,-0.000797995991983968,-0.0007997995991983968,-0.0008016032064128256,-0.0008034068136272545,-0.0008052104208416833,-0.0008070140280561122,-0.0008088176352705411,-0.0008106212424849699,-0.0008124248496993988,-0.0008142284569138277,-0.0008160320641282565,-0.0008178356713426854,-0.0008196392785571143,-0.0008214428857715431,-0.000823246492985972,-0.0008250501002004008,-0.0008268537074148296,-0.0008286573146292585,-0.0008304609218436874,-0.0008322645290581162,-0.0008340681362725451,-0.000835871743486974,-0.0008376753507014028,-0.0008394789579158317,-0.0008412825651302606,-0.0008430861723446894,-0.0008448897795591182,-0.0008466933867735471,-0.0008484969939879759,-0.0008503006012024048,-0.0008521042084168337,-0.0008539078156312625,-0.0008557114228456914,-0.0008575150300601203,-0.0008593186372745491,-0.000861122244488978,-0.0008629258517034069,-0.0008647294589178357,-0.0008665330661322645,-0.0008683366733466933,-0.0008701402805611222,-0.0008719438877755511,-0.0008737474949899799,-0.0008755511022044088,-0.0008773547094188377,-0.0008791583166332665,-0.0008809619238476954,-0.0008827655310621243,-0.0008845691382765531,-0.000886372745490982,-0.0008881763527054108,-0.0008899799599198396,-0.0008917835671342685,-0.0008935871743486974,-0.0008953907815631262,-0.0008971943887775551,-0.000898997995991984,-0.0009008016032064128,-0.0009026052104208417,-0.0009044088176352706,-0.0009062124248496994,-0.0009080160320641283,-0.0009098196392785571,-0.0009116232464929859,-0.0009134268537074148,-0.0009152304609218437,-0.0009170340681362725,-0.0009188376753507014,-0.0009206412825651303,-0.0009224448897795591,-0.000924248496993988,-0.0009260521042084169,-0.0009278557114228457,-0.0009296593186372745,-0.0009314629258517034,-0.0009332665330661322,-0.0009350701402805611,-0.00093687374749499,-0.0009386773547094188,-0.0009404809619238477,-0.0009422845691382766,-0.0009440881763527054,-0.0009458917835671343,-0.0009476953907815632,-0.000949498997995992,-0.0009513026052104208,-0.0009531062124248497,-0.0009549098196392785,-0.0009567134268537074,-0.0009585170340681363,-0.0009603206412825651,-0.000962124248496994,-0.0009639278557114229,-0.0009657314629258517,-0.0009675350701402806,-0.0009693386773547095,-0.0009711422845691383,-0.0009729458917835671,-0.000974749498997996,-0.0009765531062124248,-0.0009783567134268537,-0.0009801603206412825,-0.0009819639278557115,-0.0009837675350701403,-0.000985571142284569,-0.000987374749498998,-0.0009891783567134269,-0.0009909819639278557,-0.0009927855711422847,-0.0009945891783567134,-0.0009963927855711422,-0.0009981963927855712,-0.001]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_large.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_large.json
new file mode 100644
index 000000000000..7fddeabbe3af
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_large.json
@@ -0,0 +1 @@
+{"expected":[1000.0,1128.0,1257.0,1385.0,1513.0,1641.0,1770.0,1898.0,2026.0,2154.0,2282.0,2410.0,2540.0,2668.0,2796.0,2924.0,3052.0,3180.0,3308.0,3436.0,3566.0,3694.0,3822.0,3950.0,4078.0,4208.0,4336.0,4464.0,4592.0,4720.0,4848.0,4976.0,5104.0,5232.0,5360.0,5488.0,5616.0,5744.0,5872.0,6004.0,6132.0,6260.0,6388.0,6516.0,6644.0,6772.0,6900.0,7028.0,7156.0,7284.0,7412.0,7540.0,7668.0,7796.0,7924.0,8056.0,8184.0,8312.0,8440.0,8568.0,8696.0,8824.0,8952.0,9080.0,9208.0,9336.0,9464.0,9592.0,9720.0,9848.0,9976.0,10104.0,10232.0,10360.0,10488.0,10616.0,10744.0,10872.0,11008.0,11136.0,11264.0,11392.0,11520.0,11648.0,11776.0,11904.0,12032.0,12160.0,12288.0,12416.0,12544.0,12672.0,12800.0,12928.0,13056.0,13184.0,13312.0,13440.0,13568.0,13696.0,13824.0,13952.0,14080.0,14208.0,14336.0,14464.0,14592.0,14720.0,14848.0,14976.0,15112.0,15240.0,15368.0,15496.0,15624.0,15752.0,15880.0,16008.0,16136.0,16264.0,16384.0,16512.0,16640.0,16768.0,16896.0,17040.0,17168.0,17296.0,17424.0,17552.0,17680.0,17808.0,17936.0,18064.0,18192.0,18320.0,18448.0,18576.0,18704.0,18832.0,18960.0,19088.0,19216.0,19344.0,19472.0,19600.0,19728.0,19856.0,19984.0,20112.0,20240.0,20368.0,20496.0,20624.0,20752.0,20880.0,21008.0,21136.0,21264.0,21392.0,21520.0,21648.0,21776.0,21904.0,22032.0,22160.0,22288.0,22416.0,22544.0,22672.0,22800.0,22928.0,23056.0,23184.0,23312.0,23440.0,23568.0,23696.0,23824.0,23952.0,24080.0,24208.0,24336.0,24464.0,24592.0,24720.0,24848.0,24976.0,25120.0,25248.0,25376.0,25504.0,25632.0,25760.0,25888.0,26016.0,26144.0,26272.0,26400.0,26528.0,26656.0,26784.0,26912.0,27040.0,27168.0,27296.0,27424.0,27552.0,27680.0,27808.0,27936.0,28064.0,28192.0,28320.0,28448.0,28576.0,28704.0,28832.0,28960.0,29088.0,29216.0,29344.0,29472.0,29600.0,29728.0,29856.0,29984.0,30112.0,30240.0,30368.0,30496.0,30624.0,30752.0,30880.0,31008.0,31136.0,31264.0,31392.0,31520.0,31648.0,31776.0,31904.0,32032.0,32160.0,32288.0,32416.0,32544.0,32672.0,32800.0,32928.0,33056.0,33184.0,33312.0,33440.0,33568.0,33696.0,33824.0,33952.0,34080.0,34208.0,34336.0,34464.0,34592.0,34720.0,34848.0,34976.0,35104.0,35232.0,35360.0,35488.0,35616.0,35744.0,35872.0,36000.0,36128.0,36256.0,36384.0,36512.0,36640.0,36768.0,36896.0,37056.0,37184.0,37312.0,37440.0,37568.0,37696.0,37824.0,37952.0,38080.0,38208.0,38336.0,38464.0,38592.0,38720.0,38848.0,38976.0,39104.0,39232.0,39360.0,39488.0,39616.0,39744.0,39872.0,40000.0,40128.0,40256.0,40384.0,40512.0,40640.0,40768.0,40896.0,41024.0,41152.0,41280.0,41408.0,41536.0,41664.0,41792.0,41920.0,42048.0,42176.0,42304.0,42432.0,42560.0,42688.0,42816.0,42944.0,43072.0,43200.0,43328.0,43456.0,43584.0,43712.0,43840.0,43968.0,44096.0,44224.0,44352.0,44480.0,44608.0,44736.0,44864.0,44992.0,45120.0,45248.0,45376.0,45504.0,45632.0,45760.0,45888.0,46016.0,46144.0,46272.0,46400.0,46528.0,46656.0,46784.0,46912.0,47040.0,47168.0,47296.0,47424.0,47552.0,47680.0,47808.0,47936.0,48064.0,48192.0,48320.0,48448.0,48576.0,48704.0,48832.0,48960.0,49088.0,49216.0,49344.0,49472.0,49600.0,49728.0,49856.0,49984.0,50112.0,50240.0,50368.0,50496.0,50624.0,50752.0,50880.0,51008.0,51136.0,51264.0,51392.0,51520.0,51648.0,51776.0,51904.0,52032.0,52160.0,52288.0,52416.0,52544.0,52672.0,52800.0,52928.0,53088.0,53216.0,53344.0,53472.0,53600.0,53728.0,53856.0,53984.0,54112.0,54240.0,54368.0,54496.0,54624.0,54752.0,54880.0,55008.0,55136.0,55264.0,55392.0,55520.0,55648.0,55776.0,55904.0,56032.0,56160.0,56288.0,56416.0,56544.0,56672.0,56800.0,56928.0,57056.0,57184.0,57312.0,57440.0,57568.0,57696.0,57824.0,57952.0,58080.0,58208.0,58336.0,58464.0,58592.0,58720.0,58848.0,58976.0,59104.0,59232.0,59360.0,59488.0,59616.0,59744.0,59872.0,60000.0,60128.0,60256.0,60384.0,60512.0,60640.0,60768.0,60896.0,61024.0,61152.0,61280.0,61408.0,61536.0,61664.0,61792.0,61920.0,62048.0,62176.0,62304.0,62432.0,62560.0,62688.0,62816.0,62944.0,63072.0,63200.0,63328.0,63456.0,63584.0,63712.0,63840.0,63968.0,64096.0,64224.0,64352.0,64480.0,64608.0,64736.0,64864.0,64992.0],"x":[1000.0,1128.256513026052,1256.5130260521041,1384.7695390781564,1513.0260521042085,1641.2825651302605,1769.5390781563126,1897.7955911823647,2026.0521042084167,2154.308617234469,2282.565130260521,2410.8216432865734,2539.078156312625,2667.3346693386775,2795.5911823647293,2923.8476953907816,3052.1042084168334,3180.3607214428857,3308.617234468938,3436.87374749499,3565.130260521042,3693.386773547094,3821.6432865731463,3949.8997995991986,4078.1563126252504,4206.412825651302,4334.669338677355,4462.925851703407,4591.182364729459,4719.438877755511,4847.695390781563,4975.951903807615,5104.208416833667,5232.46492985972,5360.7214428857715,5488.977955911823,5617.234468937876,5745.490981963928,5873.74749498998,6002.0040080160325,6130.260521042084,6258.517034068136,6386.773547094188,6515.030060120241,6643.2865731462925,6771.543086172344,6899.799599198397,7028.056112224449,7156.312625250501,7284.5691382765535,7412.825651302605,7541.082164328657,7669.338677354709,7797.595190380762,7925.851703406814,8054.108216432865,8182.364729458918,8310.62124248497,8438.877755511023,8567.134268537075,8695.390781563126,8823.647294589178,8951.90380761523,9080.160320641282,9208.416833667334,9336.673346693387,9464.92985971944,9593.186372745491,9721.442885771543,9849.699398797595,9977.955911823647,10106.2124248497,10234.468937875752,10362.725450901804,10490.981963927856,10619.238476953908,10747.49498997996,10875.751503006011,11004.008016032065,11132.264529058117,11260.521042084169,11388.77755511022,11517.034068136272,11645.290581162324,11773.547094188376,11901.80360721443,12030.060120240481,12158.316633266533,12286.573146292585,12414.829659318637,12543.086172344689,12671.34268537074,12799.599198396794,12927.855711422846,13056.112224448898,13184.36873747495,13312.625250501002,13440.881763527053,13569.138276553107,13697.394789579159,13825.65130260521,13953.907815631263,14082.164328657314,14210.420841683366,14338.677354709418,14466.933867735472,14595.190380761524,14723.446893787575,14851.703406813627,14979.959919839679,15108.21643286573,15236.472945891783,15364.729458917836,15492.985971943888,15621.24248496994,15749.498997995992,15877.755511022044,16006.012024048096,16134.268537074147,16262.525050100201,16390.781563126253,16519.038076152305,16647.294589178357,16775.55110220441,16903.80761523046,17032.064128256512,17160.320641282564,17288.577154308616,17416.833667334668,17545.090180360723,17673.346693386775,17801.603206412827,17929.85971943888,18058.11623246493,18186.372745490982,18314.629258517034,18442.885771543086,18571.142284569138,18699.39879759519,18827.65531062124,18955.911823647293,19084.168336673345,19212.4248496994,19340.681362725452,19468.937875751504,19597.194388777556,19725.450901803608,19853.70741482966,19981.96392785571,20110.220440881763,20238.476953907815,20366.733466933867,20494.98997995992,20623.24649298597,20751.503006012023,20879.759519038074,21008.01603206413,21136.27254509018,21264.529058116234,21392.785571142285,21521.042084168337,21649.29859719439,21777.55511022044,21905.811623246493,22034.068136272545,22162.324649298596,22290.581162324648,22418.8376753507,22547.094188376752,22675.350701402807,22803.60721442886,22931.86372745491,23060.120240480963,23188.376753507015,23316.633266533066,23444.88977955912,23573.14629258517,23701.402805611222,23829.659318637274,23957.915831663326,24086.172344689377,24214.42885771543,24342.68537074148,24470.941883767537,24599.19839679359,24727.45490981964,24855.711422845692,24983.967935871744,25112.224448897796,25240.480961923848,25368.7374749499,25496.99398797595,25625.250501002003,25753.507014028055,25881.763527054107,26010.02004008016,26138.276553106214,26266.533066132266,26394.789579158318,26523.04609218437,26651.30260521042,26779.559118236473,26907.815631262525,27036.072144288577,27164.32865731463,27292.58517034068,27420.841683366732,27549.098196392784,27677.354709418836,27805.611222444888,27933.867735470943,28062.124248496995,28190.380761523047,28318.6372745491,28446.89378757515,28575.150300601203,28703.406813627254,28831.663326653306,28959.919839679358,29088.17635270541,29216.43286573146,29344.689378757514,29472.945891783565,29601.20240480962,29729.458917835673,29857.715430861725,29985.971943887776,30114.22845691383,30242.48496993988,30370.741482965932,30498.997995991984,30627.254509018036,30755.511022044087,30883.76753507014,31012.02404809619,31140.280561122243,31268.537074148295,31396.79358717435,31525.050100200402,31653.306613226454,31781.563126252506,31909.819639278558,32038.07615230461,32166.33266533066,32294.589178356713,32422.845691382765,32551.102204408817,32679.35871743487,32807.61523046092,32935.871743486976,33064.128256513024,33192.38476953908,33320.64128256513,33448.89779559118,33577.15430861723,33705.41082164329,33833.667334669335,33961.92384769539,34090.180360721446,34218.436873747494,34346.69338677355,34474.9498997996,34603.20641282565,34731.4629258517,34859.71943887776,34987.975951903805,35116.23246492986,35244.48897795591,35372.745490981964,35501.00200400801,35629.25851703407,35757.51503006012,35885.77154308617,36014.02805611223,36142.284569138275,36270.54108216433,36398.79759519038,36527.054108216435,36655.31062124248,36783.56713426854,36911.82364729459,37040.08016032064,37168.33667334669,37296.593186372746,37424.8496993988,37553.10621242485,37681.362725450905,37809.61923847695,37937.87575150301,38066.13226452906,38194.38877755511,38322.64529058116,38450.901803607216,38579.158316633264,38707.41482965932,38835.67134268537,38963.92785571142,39092.18436873748,39220.44088176353,39348.69739478958,39476.95390781563,39605.210420841686,39733.466933867734,39861.72344689379,39989.97995991984,40118.23647294589,40246.49298597194,40374.749498998,40503.006012024045,40631.2625250501,40759.51903807615,40887.775551102204,41016.03206412826,41144.28857715431,41272.54509018036,41400.80160320641,41529.05811623247,41657.314629258515,41785.57114228457,41913.82765531062,42042.084168336674,42170.34068136272,42298.59719438878,42426.853707414826,42555.11022044088,42683.36673346694,42811.623246492985,42939.87975951904,43068.13627254509,43196.392785571144,43324.64929859719,43452.90581162325,43581.162324649296,43709.41883767535,43837.6753507014,43965.931863727455,44094.188376753504,44222.44488977956,44350.701402805615,44478.95791583166,44607.21442885772,44735.47094188377,44863.72745490982,44991.98396793587,45120.240480961926,45248.496993987974,45376.75350701403,45505.01002004008,45633.26653306613,45761.52304609218,45889.77955911824,46018.03607214429,46146.29258517034,46274.549098196396,46402.805611222444,46531.0621242485,46659.31863727455,46787.5751503006,46915.83166332665,47044.08817635271,47172.344689378755,47300.60120240481,47428.85771543086,47557.114228456914,47685.37074148296,47813.62725450902,47941.88376753507,48070.14028056112,48198.39679358718,48326.653306613225,48454.90981963928,48583.16633266533,48711.422845691384,48839.67935871743,48967.93587174349,49096.192384769536,49224.44889779559,49352.70541082164,49480.961923847695,49609.21843687375,49737.4749498998,49865.731462925854,49993.9879759519,50122.24448897796,50250.501002004006,50378.75751503006,50507.01402805611,50635.270541082165,50763.52705410821,50891.78356713427,51020.04008016032,51148.29659318637,51276.55310621243,51404.80961923848,51533.06613226453,51661.32264529058,51789.579158316636,51917.835671342684,52046.09218436874,52174.34869739479,52302.60521042084,52430.86172344689,52559.11823647295,52687.374749498995,52815.63126252505,52943.887775551106,53072.144288577154,53200.40080160321,53328.65731462926,53456.91382765531,53585.17034068136,53713.42685370742,53841.683366733465,53969.93987975952,54098.19639278557,54226.452905811624,54354.70941883767,54482.96593186373,54611.222444889776,54739.47895791583,54867.73547094189,54995.991983967935,55124.24849699399,55252.50501002004,55380.761523046094,55509.01803607214,55637.2745490982,55765.531062124246,55893.7875751503,56022.04408817635,56150.300601202405,56278.55711422845,56406.81362725451,56535.070140280564,56663.32665330661,56791.58316633267,56919.839679358716,57048.09619238477,57176.35270541082,57304.609218436875,57432.86573146292,57561.12224448898,57689.37875751503,57817.63527054108,57945.89178356713,58074.14829659319,58202.40480961924,58330.66132264529,58458.917835671346,58587.174348697394,58715.43086172345,58843.6873747495,58971.94388777555,59100.2004008016,59228.45691382766,59356.713426853705,59484.96993987976,59613.22645290581,59741.482965931864,59869.73947895792,59997.99599198397,60126.25250501002,60254.50901803607,60382.76553106213,60511.022044088175,60639.27855711423,60767.53507014028,60895.791583166334,61024.04809619238,61152.30460921844,61280.561122244486,61408.81763527054,61537.07414829659,61665.330661322645,61793.5871743487,61921.84368737475,62050.100200400804,62178.35671342685,62306.61322645291,62434.869739478956,62563.12625250501,62691.38276553106,62819.639278557115,62947.89579158316,63076.15230460922,63204.40881763527,63332.66533066132,63460.92184368738,63589.178356713426,63717.43486973948,63845.69138276553,63973.947895791585,64102.20440881763,64230.46092184369,64358.71743486974,64486.97394789579,64615.23046092184,64743.486973947896,64871.743486973945,65000.0]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_normal.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_normal.json
new file mode 100644
index 000000000000..87c183bd0743
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_normal.json
@@ -0,0 +1 @@
+{"expected":[0.0,2.005859375,4.01171875,6.01953125,8.0234375,10.03125,12.0390625,14.0390625,16.046875,18.046875,20.0625,22.0625,24.078125,26.078125,28.078125,30.09375,32.09375,34.09375,36.09375,38.125,40.125,42.125,44.125,46.125,48.15625,50.15625,52.15625,54.15625,56.15625,58.1875,60.1875,62.1875,64.1875,66.1875,68.1875,70.1875,72.1875,74.25,76.25,78.25,80.25,82.25,84.25,86.25,88.25,90.25,92.25,94.3125,96.3125,98.3125,100.3125,102.3125,104.3125,106.3125,108.3125,110.3125,112.3125,114.3125,116.375,118.375,120.375,122.375,124.375,126.375,128.375,130.375,132.375,134.375,136.375,138.375,140.375,142.375,144.375,146.5,148.5,150.5,152.5,154.5,156.5,158.5,160.5,162.5,164.5,166.5,168.5,170.5,172.5,174.5,176.5,178.5,180.5,182.5,184.5,186.5,188.625,190.625,192.625,194.625,196.625,198.625,200.625,202.625,204.625,206.625,208.625,210.625,212.625,214.625,216.625,218.625,220.625,222.625,224.625,226.625,228.625,230.75,232.75,234.75,236.75,238.75,240.75,242.75,244.75,246.75,248.75,250.75,252.75,254.75,256.75,258.75,260.75,262.75,264.75,266.75,268.75,270.75,272.75,274.75,276.75,278.75,280.75,282.75,284.75,286.75,288.75,290.75,293.0,295.0,297.0,299.0,301.0,303.0,305.0,307.0,309.0,311.0,313.0,315.0,317.0,319.0,321.0,323.0,325.0,327.0,329.0,331.0,333.0,335.0,337.0,339.0,341.0,343.0,345.0,347.0,349.0,351.0,353.0,355.0,357.0,359.0,361.0,363.0,365.0,367.0,369.0,371.0,373.0,375.0,377.25,379.25,381.25,383.25,385.25,387.25,389.25,391.25,393.25,395.25,397.25,399.25,401.25,403.25,405.25,407.25,409.25,411.25,413.25,415.25,417.25,419.25,421.25,423.25,425.25,427.25,429.25,431.25,433.25,435.25,437.25,439.25,441.25,443.25,445.25,447.25,449.25,451.25,453.25,455.25,457.25,459.5,461.5,463.5,465.5,467.5,469.5,471.5,473.5,475.5,477.5,479.5,481.5,483.5,485.5,487.5,489.5,491.5,493.5,495.5,497.5,499.5,501.5,503.5,505.5,507.5,509.5,511.5,513.5,515.5,517.5,519.5,521.5,523.5,525.5,527.5,529.5,531.5,533.5,535.5,537.5,539.5,541.5,543.5,545.5,547.5,549.5,551.5,553.5,555.5,557.5,559.5,561.5,563.5,565.5,567.5,569.5,571.5,573.5,575.5,577.5,579.5,581.5,583.5,586.0,588.0,590.0,592.0,594.0,596.0,598.0,600.0,602.0,604.0,606.0,608.0,610.0,612.0,614.0,616.0,618.0,620.0,622.0,624.0,626.0,628.0,630.0,632.0,634.0,636.0,638.0,640.0,642.0,644.0,646.0,648.0,650.0,652.0,654.0,656.0,658.0,660.0,662.0,664.0,666.0,668.0,670.0,672.0,674.0,676.0,678.0,680.0,682.0,684.0,686.0,688.0,690.0,692.0,694.0,696.0,698.0,700.0,702.0,704.0,706.0,708.0,710.0,712.0,714.0,716.0,718.0,720.0,722.0,724.0,726.0,728.0,730.0,732.0,734.0,736.0,738.0,740.0,742.0,744.0,746.0,748.0,750.0,752.5,754.5,756.5,758.5,760.5,762.5,764.5,766.5,768.5,770.5,772.5,774.5,776.5,778.5,780.5,782.5,784.5,786.5,788.5,790.5,792.5,794.5,796.5,798.5,800.5,802.5,804.5,806.5,808.5,810.5,812.5,814.5,816.5,818.5,820.5,822.5,824.5,826.5,828.5,830.5,832.5,834.5,836.5,838.5,840.5,842.5,844.5,846.5,848.5,850.5,852.5,854.5,856.5,858.5,860.5,862.5,864.5,866.5,868.5,870.5,872.5,874.5,876.5,878.5,880.5,882.5,884.5,886.5,888.5,890.5,892.5,894.5,896.5,898.5,900.5,902.5,904.5,906.5,908.5,910.5,912.5,914.5,916.5,919.0,921.0,923.0,925.0,927.0,929.0,931.0,933.0,935.0,937.0,939.0,941.0,943.0,945.0,947.0,949.0,951.0,953.0,955.0,957.0,959.0,961.0,963.0,965.0,967.0,969.0,971.0,973.0,975.0,977.0,979.0,981.0,983.0,985.0,987.0,989.0,991.0,993.0,995.0,997.0,999.0,1001.0],"x":[0.0,2.006012024048096,4.012024048096192,6.018036072144288,8.024048096192384,10.030060120240481,12.036072144288577,14.042084168336673,16.04809619238477,18.054108216432866,20.060120240480963,22.06613226452906,24.072144288577153,26.07815631262525,28.084168336673347,30.090180360721444,32.09619238476954,34.102204408817634,36.10821643286573,38.11422845691383,40.120240480961925,42.12625250501002,44.13226452905812,46.13827655310621,48.144288577154306,50.1503006012024,52.1563126252505,54.1623246492986,56.168336673346694,58.17434869739479,60.18036072144289,62.186372745490985,64.19238476953907,66.19839679358718,68.20440881763527,70.21042084168337,72.21643286573146,74.22244488977955,76.22845691382766,78.23446893787575,80.24048096192385,82.24649298597194,84.25250501002004,86.25851703406813,88.26452905811624,90.27054108216433,92.27655310621242,94.28256513026052,96.28857715430861,98.29458917835672,100.3006012024048,102.30661322645291,104.312625250501,106.3186372745491,108.3246492985972,110.33066132264528,112.33667334669339,114.34268537074148,116.34869739478958,118.35470941883767,120.36072144288578,122.36673346693387,124.37274549098197,126.37875751503006,128.38476953907815,130.39078156312624,132.39679358717436,134.40280561122245,136.40881763527054,138.41482965931863,140.42084168336675,142.42685370741484,144.43286573146293,146.43887775551102,148.4448897795591,150.45090180360722,152.4569138276553,154.4629258517034,156.4689378757515,158.4749498997996,160.4809619238477,162.4869739478958,164.49298597194388,166.49899799599197,168.5050100200401,170.51102204408818,172.51703406813627,174.52304609218436,176.52905811623248,178.53507014028057,180.54108216432866,182.54709418837675,184.55310621242484,186.55911823647295,188.56513026052104,190.57114228456913,192.57715430861722,194.58316633266534,196.58917835671343,198.59519038076152,200.6012024048096,202.6072144288577,204.61322645290582,206.6192384769539,208.625250501002,210.6312625250501,212.6372745490982,214.6432865731463,216.6492985971944,218.65531062124248,220.66132264529057,222.6673346693387,224.67334669338678,226.67935871743487,228.68537074148296,230.69138276553107,232.69739478957916,234.70340681362725,236.70941883767534,238.71543086172343,240.72144288577155,242.72745490981964,244.73346693386773,246.73947895791582,248.74549098196394,250.75150300601203,252.75751503006012,254.7635270541082,256.7695390781563,258.7755511022044,260.7815631262525,262.7875751503006,264.7935871743487,266.7995991983968,268.8056112224449,270.811623246493,272.8176352705411,274.8236472945892,276.82965931863725,278.8356713426854,280.8416833667335,282.84769539078155,284.85370741482967,286.85971943887773,288.86573146292585,290.87174348697397,292.87775551102203,294.88376753507015,296.8897795591182,298.89579158316633,300.90180360721445,302.9078156312625,304.9138276553106,306.91983967935874,308.9258517034068,310.9318637274549,312.937875751503,314.9438877755511,316.9498997995992,318.9559118236473,320.9619238476954,322.96793587174346,324.9739478957916,326.9799599198397,328.98597194388776,330.9919839679359,332.99799599198394,335.00400801603206,337.0100200400802,339.01603206412824,341.02204408817636,343.0280561122245,345.03406813627254,347.04008016032066,349.0460921843687,351.05210420841684,353.05811623246495,355.064128256513,357.07014028056113,359.0761523046092,361.0821643286573,363.08817635270543,365.0941883767535,367.1002004008016,369.1062124248497,371.1122244488978,373.1182364729459,375.12424849699397,377.1302605210421,379.1362725450902,381.14228456913827,383.1482965931864,385.15430861723445,387.16032064128257,389.1663326653307,391.17234468937875,393.17835671342687,395.1843687374749,397.19038076152304,399.19639278557116,401.2024048096192,403.20841683366734,405.2144288577154,407.2204408817635,409.22645290581164,411.2324649298597,413.2384769539078,415.24448897795594,417.250501002004,419.2565130260521,421.2625250501002,423.2685370741483,425.2745490981964,427.2805611222445,429.2865731462926,431.29258517034066,433.2985971943888,435.3046092184369,437.31062124248496,439.3166332665331,441.32264529058114,443.32865731462925,445.3346693386774,447.34068136272543,449.34669338677355,451.35270541082167,453.35871743486973,455.36472945891785,457.3707414829659,459.37675350701403,461.38276553106215,463.3887775551102,465.3947895791583,467.4008016032064,469.4068136272545,471.4128256513026,473.4188376753507,475.4248496993988,477.43086172344687,479.436873747495,481.4428857715431,483.44889779559117,485.4549098196393,487.4609218436874,489.46693386773546,491.4729458917836,493.47895791583164,495.48496993987976,497.4909819639279,499.49699398797594,501.50300601202406,503.5090180360721,505.51503006012024,507.52104208416836,509.5270541082164,511.53306613226454,513.5390781563126,515.5450901803607,517.5511022044088,519.557114228457,521.563126252505,523.5691382765531,525.5751503006012,527.5811623246493,529.5871743486974,531.5931863727454,533.5991983967936,535.6052104208417,537.6112224448898,539.6172344689379,541.623246492986,543.629258517034,545.6352705410821,547.6412825651303,549.6472945891784,551.6533066132265,553.6593186372745,555.6653306613226,557.6713426853707,559.6773547094189,561.683366733467,563.689378757515,565.6953907815631,567.7014028056112,569.7074148296593,571.7134268537075,573.7194388777555,575.7254509018036,577.7314629258517,579.7374749498998,581.7434869739479,583.7494989979959,585.7555110220441,587.7615230460922,589.7675350701403,591.7735470941884,593.7795591182364,595.7855711422845,597.7915831663327,599.7975951903808,601.8036072144289,603.8096192384769,605.815631262525,607.8216432865731,609.8276553106213,611.8336673346694,613.8396793587175,615.8456913827655,617.8517034068136,619.8577154308617,621.8637274549098,623.869739478958,625.875751503006,627.8817635270541,629.8877755511022,631.8937875751503,633.8997995991984,635.9058116232464,637.9118236472946,639.9178356713427,641.9238476953908,643.9298597194389,645.9358717434869,647.941883767535,649.9478957915832,651.9539078156313,653.9599198396794,655.9659318637274,657.9719438877755,659.9779559118236,661.9839679358718,663.9899799599199,665.9959919839679,668.002004008016,670.0080160320641,672.0140280561122,674.0200400801604,676.0260521042084,678.0320641282565,680.0380761523046,682.0440881763527,684.0501002004008,686.056112224449,688.062124248497,690.0681362725451,692.0741482965932,694.0801603206413,696.0861723446894,698.0921843687374,700.0981963927856,702.1042084168337,704.1102204408818,706.1162324649299,708.1222444889779,710.128256513026,712.1342685370741,714.1402805611223,716.1462925851704,718.1523046092184,720.1583166332665,722.1643286573146,724.1703406813627,726.1763527054109,728.1823647294589,730.188376753507,732.1943887775551,734.2004008016032,736.2064128256513,738.2124248496993,740.2184368737475,742.2244488977956,744.2304609218437,746.2364729458918,748.2424849699398,750.2484969939879,752.2545090180361,754.2605210420842,756.2665330661323,758.2725450901804,760.2785571142284,762.2845691382765,764.2905811623247,766.2965931863728,768.3026052104209,770.3086172344689,772.314629258517,774.3206412825651,776.3266533066133,778.3326653306614,780.3386773547094,782.3446893787575,784.3507014028056,786.3567134268537,788.3627254509018,790.3687374749499,792.374749498998,794.3807615230461,796.3867735470942,798.3927855711423,800.3987975951903,802.4048096192384,804.4108216432866,806.4168336673347,808.4228456913828,810.4288577154308,812.4348697394789,814.440881763527,816.4468937875752,818.4529058116233,820.4589178356713,822.4649298597194,824.4709418837675,826.4769539078156,828.4829659318638,830.4889779559119,832.4949899799599,834.501002004008,836.5070140280561,838.5130260521042,840.5190380761524,842.5250501002004,844.5310621242485,846.5370741482966,848.5430861723447,850.5490981963928,852.5551102204408,854.561122244489,856.5671342685371,858.5731462925852,860.5791583166333,862.5851703406813,864.5911823647294,866.5971943887776,868.6032064128257,870.6092184368738,872.6152304609218,874.6212424849699,876.627254509018,878.6332665330661,880.6392785571143,882.6452905811623,884.6513026052104,886.6573146292585,888.6633266533066,890.6693386773547,892.6753507014027,894.6813627254509,896.687374749499,898.6933867735471,900.6993987975952,902.7054108216433,904.7114228456913,906.7174348697395,908.7234468937876,910.7294589178357,912.7354709418838,914.7414829659318,916.7474949899799,918.7535070140281,920.7595190380762,922.7655310621243,924.7715430861723,926.7775551102204,928.7835671342685,930.7895791583167,932.7955911823648,934.8016032064128,936.8076152304609,938.813627254509,940.8196392785571,942.8256513026053,944.8316633266533,946.8376753507014,948.8436873747495,950.8496993987976,952.8557114228457,954.8617234468937,956.8677354709419,958.87374749499,960.8797595190381,962.8857715430862,964.8917835671342,966.8977955911823,968.9038076152304,970.9098196392786,972.9158316633267,974.9218436873748,976.9278557114228,978.9338677354709,980.939879759519,982.9458917835672,984.9519038076153,986.9579158316633,988.9639278557114,990.9699398797595,992.9759519038076,994.9819639278558,996.9879759519038,998.9939879759519,1001.0]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_small.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_small.json
new file mode 100644
index 000000000000..7e33ea173668
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_small.json
@@ -0,0 +1 @@
+{"expected":[0.0,0.0020046234130859375,0.004009246826171875,0.006011962890625,0.00801849365234375,0.01001739501953125,0.01202392578125,0.01403045654296875,0.0160369873046875,0.018035888671875,0.0200347900390625,0.0220489501953125,0.0240478515625,0.0260467529296875,0.0280609130859375,0.030059814453125,0.032073974609375,0.0340576171875,0.03607177734375,0.0380859375,0.040069580078125,0.042083740234375,0.044097900390625,0.04608154296875,0.048095703125,0.05010986328125,0.052093505859375,0.054107666015625,0.056121826171875,0.05810546875,0.06011962890625,0.0621337890625,0.06414794921875,0.066162109375,0.068115234375,0.07012939453125,0.0721435546875,0.07415771484375,0.076171875,0.07818603515625,0.08013916015625,0.0821533203125,0.08416748046875,0.086181640625,0.08819580078125,0.0902099609375,0.0921630859375,0.09417724609375,0.09619140625,0.09820556640625,0.1002197265625,0.10223388671875,0.10418701171875,0.106201171875,0.10821533203125,0.1102294921875,0.11224365234375,0.1142578125,0.1162109375,0.11822509765625,0.1202392578125,0.12225341796875,0.124267578125,0.126220703125,0.1282958984375,0.1302490234375,0.13232421875,0.13427734375,0.13623046875,0.1383056640625,0.1402587890625,0.142333984375,0.144287109375,0.146240234375,0.1483154296875,0.1502685546875,0.15234375,0.154296875,0.1563720703125,0.1583251953125,0.1602783203125,0.162353515625,0.164306640625,0.1663818359375,0.1683349609375,0.1702880859375,0.17236328125,0.17431640625,0.1763916015625,0.1783447265625,0.180419921875,0.182373046875,0.184326171875,0.1864013671875,0.1883544921875,0.1904296875,0.1923828125,0.1943359375,0.1964111328125,0.1983642578125,0.200439453125,0.202392578125,0.2044677734375,0.2064208984375,0.2083740234375,0.21044921875,0.21240234375,0.2144775390625,0.2164306640625,0.2183837890625,0.220458984375,0.222412109375,0.2244873046875,0.2264404296875,0.228515625,0.23046875,0.232421875,0.2344970703125,0.2364501953125,0.238525390625,0.240478515625,0.242431640625,0.2445068359375,0.2464599609375,0.24853515625,0.25048828125,0.25244140625,0.25439453125,0.256591796875,0.258544921875,0.260498046875,0.262451171875,0.2646484375,0.2666015625,0.2685546875,0.2705078125,0.2724609375,0.274658203125,0.276611328125,0.278564453125,0.280517578125,0.282470703125,0.28466796875,0.28662109375,0.28857421875,0.29052734375,0.29248046875,0.294677734375,0.296630859375,0.298583984375,0.300537109375,0.302490234375,0.3046875,0.306640625,0.30859375,0.310546875,0.312744140625,0.314697265625,0.316650390625,0.318603515625,0.320556640625,0.32275390625,0.32470703125,0.32666015625,0.32861328125,0.33056640625,0.332763671875,0.334716796875,0.336669921875,0.338623046875,0.340576171875,0.3427734375,0.3447265625,0.3466796875,0.3486328125,0.3505859375,0.352783203125,0.354736328125,0.356689453125,0.358642578125,0.36083984375,0.36279296875,0.36474609375,0.36669921875,0.36865234375,0.370849609375,0.372802734375,0.374755859375,0.376708984375,0.378662109375,0.380859375,0.3828125,0.384765625,0.38671875,0.388671875,0.390869140625,0.392822265625,0.394775390625,0.396728515625,0.398681640625,0.40087890625,0.40283203125,0.40478515625,0.40673828125,0.408935546875,0.410888671875,0.412841796875,0.414794921875,0.416748046875,0.4189453125,0.4208984375,0.4228515625,0.4248046875,0.4267578125,0.428955078125,0.430908203125,0.432861328125,0.434814453125,0.436767578125,0.43896484375,0.44091796875,0.44287109375,0.44482421875,0.44677734375,0.448974609375,0.450927734375,0.452880859375,0.454833984375,0.45703125,0.458984375,0.4609375,0.462890625,0.46484375,0.467041015625,0.468994140625,0.470947265625,0.472900390625,0.474853515625,0.47705078125,0.47900390625,0.48095703125,0.48291015625,0.48486328125,0.487060546875,0.489013671875,0.490966796875,0.492919921875,0.494873046875,0.4970703125,0.4990234375,0.5009765625,0.5029296875,0.5048828125,0.5068359375,0.5087890625,0.51123046875,0.51318359375,0.51513671875,0.51708984375,0.51904296875,0.52099609375,0.52294921875,0.52490234375,0.52685546875,0.529296875,0.53125,0.533203125,0.53515625,0.537109375,0.5390625,0.541015625,0.54296875,0.544921875,0.546875,0.54931640625,0.55126953125,0.55322265625,0.55517578125,0.55712890625,0.55908203125,0.56103515625,0.56298828125,0.56494140625,0.56689453125,0.5693359375,0.5712890625,0.5732421875,0.5751953125,0.5771484375,0.5791015625,0.5810546875,0.5830078125,0.5849609375,0.58740234375,0.58935546875,0.59130859375,0.59326171875,0.59521484375,0.59716796875,0.59912109375,0.60107421875,0.60302734375,0.60498046875,0.607421875,0.609375,0.611328125,0.61328125,0.615234375,0.6171875,0.619140625,0.62109375,0.623046875,0.62548828125,0.62744140625,0.62939453125,0.63134765625,0.63330078125,0.63525390625,0.63720703125,0.63916015625,0.64111328125,0.64306640625,0.6455078125,0.6474609375,0.6494140625,0.6513671875,0.6533203125,0.6552734375,0.6572265625,0.6591796875,0.6611328125,0.6630859375,0.66552734375,0.66748046875,0.66943359375,0.67138671875,0.67333984375,0.67529296875,0.67724609375,0.67919921875,0.68115234375,0.68359375,0.685546875,0.6875,0.689453125,0.69140625,0.693359375,0.6953125,0.697265625,0.69921875,0.701171875,0.70361328125,0.70556640625,0.70751953125,0.70947265625,0.71142578125,0.71337890625,0.71533203125,0.71728515625,0.71923828125,0.7216796875,0.7236328125,0.7255859375,0.7275390625,0.7294921875,0.7314453125,0.7333984375,0.7353515625,0.7373046875,0.7392578125,0.74169921875,0.74365234375,0.74560546875,0.74755859375,0.74951171875,0.75146484375,0.75341796875,0.75537109375,0.75732421875,0.75927734375,0.76171875,0.763671875,0.765625,0.767578125,0.76953125,0.771484375,0.7734375,0.775390625,0.77734375,0.77978515625,0.78173828125,0.78369140625,0.78564453125,0.78759765625,0.78955078125,0.79150390625,0.79345703125,0.79541015625,0.79736328125,0.7998046875,0.8017578125,0.8037109375,0.8056640625,0.8076171875,0.8095703125,0.8115234375,0.8134765625,0.8154296875,0.81787109375,0.81982421875,0.82177734375,0.82373046875,0.82568359375,0.82763671875,0.82958984375,0.83154296875,0.83349609375,0.83544921875,0.837890625,0.83984375,0.841796875,0.84375,0.845703125,0.84765625,0.849609375,0.8515625,0.853515625,0.85546875,0.85791015625,0.85986328125,0.86181640625,0.86376953125,0.86572265625,0.86767578125,0.86962890625,0.87158203125,0.87353515625,0.8759765625,0.8779296875,0.8798828125,0.8818359375,0.8837890625,0.8857421875,0.8876953125,0.8896484375,0.8916015625,0.8935546875,0.89599609375,0.89794921875,0.89990234375,0.90185546875,0.90380859375,0.90576171875,0.90771484375,0.90966796875,0.91162109375,0.9140625,0.916015625,0.91796875,0.919921875,0.921875,0.923828125,0.92578125,0.927734375,0.9296875,0.931640625,0.93408203125,0.93603515625,0.93798828125,0.93994140625,0.94189453125,0.94384765625,0.94580078125,0.94775390625,0.94970703125,0.95166015625,0.9541015625,0.9560546875,0.9580078125,0.9599609375,0.9619140625,0.9638671875,0.9658203125,0.9677734375,0.9697265625,0.97216796875,0.97412109375,0.97607421875,0.97802734375,0.97998046875,0.98193359375,0.98388671875,0.98583984375,0.98779296875,0.98974609375,0.9921875,0.994140625,0.99609375,0.998046875,1.0],"x":[0.0,0.002004008016032064,0.004008016032064128,0.006012024048096192,0.008016032064128256,0.01002004008016032,0.012024048096192385,0.014028056112224449,0.01603206412825651,0.018036072144288578,0.02004008016032064,0.022044088176352707,0.02404809619238477,0.026052104208416832,0.028056112224448898,0.03006012024048096,0.03206412825651302,0.03406813627254509,0.036072144288577156,0.03807615230460922,0.04008016032064128,0.04208416833667335,0.04408817635270541,0.04609218436873747,0.04809619238476954,0.050100200400801605,0.052104208416833664,0.05410821643286573,0.056112224448897796,0.05811623246492986,0.06012024048096192,0.06212424849699399,0.06412825651302605,0.06613226452905811,0.06813627254509018,0.07014028056112225,0.07214428857715431,0.07414829659318638,0.07615230460921844,0.0781563126252505,0.08016032064128256,0.08216432865731463,0.0841683366733467,0.08617234468937876,0.08817635270541083,0.09018036072144289,0.09218436873747494,0.09418837675350701,0.09619238476953908,0.09819639278557114,0.10020040080160321,0.10220440881763528,0.10420841683366733,0.1062124248496994,0.10821643286573146,0.11022044088176353,0.11222444889779559,0.11422845691382766,0.11623246492985972,0.11823647294589178,0.12024048096192384,0.12224448897795591,0.12424849699398798,0.12625250501002003,0.1282565130260521,0.13026052104208416,0.13226452905811623,0.1342685370741483,0.13627254509018036,0.13827655310621242,0.1402805611222445,0.14228456913827656,0.14428857715430862,0.1462925851703407,0.14829659318637275,0.15030060120240482,0.1523046092184369,0.15430861723446893,0.156312625250501,0.15831663326653306,0.16032064128256512,0.1623246492985972,0.16432865731462926,0.16633266533066132,0.1683366733466934,0.17034068136272545,0.17234468937875752,0.1743486973947896,0.17635270541082165,0.17835671342685372,0.18036072144288579,0.18236472945891782,0.1843687374749499,0.18637274549098196,0.18837675350701402,0.1903807615230461,0.19238476953907815,0.19438877755511022,0.1963927855711423,0.19839679358717435,0.20040080160320642,0.20240480961923848,0.20440881763527055,0.20641282565130262,0.20841683366733466,0.21042084168336672,0.2124248496993988,0.21442885771543085,0.21643286573146292,0.218436873747495,0.22044088176352705,0.22244488977955912,0.22444889779559118,0.22645290581162325,0.22845691382765532,0.23046092184368738,0.23246492985971945,0.23446893787575152,0.23647294589178355,0.23847695390781562,0.24048096192384769,0.24248496993987975,0.24448897795591182,0.24649298597194388,0.24849699398797595,0.250501002004008,0.25250501002004005,0.2545090180360721,0.2565130260521042,0.25851703406813625,0.2605210420841683,0.2625250501002004,0.26452905811623245,0.2665330661322645,0.2685370741482966,0.27054108216432865,0.2725450901803607,0.2745490981963928,0.27655310621242485,0.2785571142284569,0.280561122244489,0.28256513026052105,0.2845691382765531,0.2865731462925852,0.28857715430861725,0.2905811623246493,0.2925851703406814,0.29458917835671344,0.2965931863727455,0.2985971943887776,0.30060120240480964,0.3026052104208417,0.3046092184368738,0.3066132264529058,0.30861723446893785,0.3106212424849699,0.312625250501002,0.31462925851703405,0.3166332665330661,0.3186372745490982,0.32064128256513025,0.3226452905811623,0.3246492985971944,0.32665330661322645,0.3286573146292585,0.3306613226452906,0.33266533066132264,0.3346693386773547,0.3366733466933868,0.33867735470941884,0.3406813627254509,0.342685370741483,0.34468937875751504,0.3466933867735471,0.3486973947895792,0.35070140280561124,0.3527054108216433,0.35470941883767537,0.35671342685370744,0.3587174348697395,0.36072144288577157,0.3627254509018036,0.36472945891783565,0.3667334669338677,0.3687374749498998,0.37074148296593185,0.3727454909819639,0.374749498997996,0.37675350701402804,0.3787575150300601,0.3807615230460922,0.38276553106212424,0.3847695390781563,0.3867735470941884,0.38877755511022044,0.3907815631262525,0.3927855711422846,0.39478957915831664,0.3967935871743487,0.39879759519038077,0.40080160320641284,0.4028056112224449,0.40480961923847697,0.40681362725450904,0.4088176352705411,0.41082164328657317,0.41282565130260523,0.4148296593186373,0.4168336673346693,0.4188376753507014,0.42084168336673344,0.4228456913827655,0.4248496993987976,0.42685370741482964,0.4288577154308617,0.4308617234468938,0.43286573146292584,0.4348697394789579,0.43687374749499,0.43887775551102204,0.4408817635270541,0.44288577154308617,0.44488977955911824,0.4468937875751503,0.44889779559118237,0.45090180360721444,0.4529058116232465,0.45490981963927857,0.45691382765531063,0.4589178356713427,0.46092184368737477,0.46292585170340683,0.4649298597194389,0.46693386773547096,0.46893787575150303,0.4709418837675351,0.4729458917835671,0.4749498997995992,0.47695390781563124,0.4789579158316633,0.48096192384769537,0.48296593186372744,0.4849699398797595,0.48697394789579157,0.48897795591182364,0.4909819639278557,0.49298597194388777,0.49498997995991983,0.4969939879759519,0.49899799599198397,0.501002004008016,0.503006012024048,0.5050100200400801,0.5070140280561122,0.5090180360721442,0.5110220440881763,0.5130260521042084,0.5150300601202404,0.5170340681362725,0.5190380761523046,0.5210420841683366,0.5230460921843687,0.5250501002004008,0.5270541082164328,0.5290581162324649,0.531062124248497,0.533066132264529,0.5350701402805611,0.5370741482965932,0.5390781563126252,0.5410821643286573,0.5430861723446894,0.5450901803607214,0.5470941883767535,0.5490981963927856,0.5511022044088176,0.5531062124248497,0.5551102204408818,0.5571142284569138,0.5591182364729459,0.561122244488978,0.56312625250501,0.5651302605210421,0.5671342685370742,0.5691382765531062,0.5711422845691383,0.5731462925851704,0.5751503006012024,0.5771543086172345,0.5791583166332666,0.5811623246492986,0.5831663326653307,0.5851703406813628,0.5871743486973948,0.5891783567134269,0.591182364729459,0.593186372745491,0.5951903807615231,0.5971943887775552,0.5991983967935872,0.6012024048096193,0.6032064128256514,0.6052104208416834,0.6072144288577155,0.6092184368737475,0.6112224448897795,0.6132264529058116,0.6152304609218436,0.6172344689378757,0.6192384769539078,0.6212424849699398,0.6232464929859719,0.625250501002004,0.627254509018036,0.6292585170340681,0.6312625250501002,0.6332665330661322,0.6352705410821643,0.6372745490981964,0.6392785571142284,0.6412825651302605,0.6432865731462926,0.6452905811623246,0.6472945891783567,0.6492985971943888,0.6513026052104208,0.6533066132264529,0.655310621242485,0.657314629258517,0.6593186372745491,0.6613226452905812,0.6633266533066132,0.6653306613226453,0.6673346693386774,0.6693386773547094,0.6713426853707415,0.6733466933867736,0.6753507014028056,0.6773547094188377,0.6793587174348698,0.6813627254509018,0.6833667334669339,0.685370741482966,0.687374749498998,0.6893787575150301,0.6913827655310621,0.6933867735470942,0.6953907815631263,0.6973947895791583,0.6993987975951904,0.7014028056112225,0.7034068136272545,0.7054108216432866,0.7074148296593187,0.7094188376753507,0.7114228456913828,0.7134268537074149,0.7154308617234469,0.717434869739479,0.7194388777555111,0.7214428857715431,0.7234468937875751,0.7254509018036072,0.7274549098196392,0.7294589178356713,0.7314629258517034,0.7334669338677354,0.7354709418837675,0.7374749498997996,0.7394789579158316,0.7414829659318637,0.7434869739478958,0.7454909819639278,0.7474949899799599,0.749498997995992,0.751503006012024,0.7535070140280561,0.7555110220440882,0.7575150300601202,0.7595190380761523,0.7615230460921844,0.7635270541082164,0.7655310621242485,0.7675350701402806,0.7695390781563126,0.7715430861723447,0.7735470941883767,0.7755511022044088,0.7775551102204409,0.779559118236473,0.781563126252505,0.7835671342685371,0.7855711422845691,0.7875751503006012,0.7895791583166333,0.7915831663326653,0.7935871743486974,0.7955911823647295,0.7975951903807615,0.7995991983967936,0.8016032064128257,0.8036072144288577,0.8056112224448898,0.8076152304609219,0.8096192384769539,0.811623246492986,0.8136272545090181,0.8156312625250501,0.8176352705410822,0.8196392785571143,0.8216432865731463,0.8236472945891784,0.8256513026052105,0.8276553106212425,0.8296593186372746,0.8316633266533067,0.8336673346693386,0.8356713426853707,0.8376753507014028,0.8396793587174348,0.8416833667334669,0.843687374749499,0.845691382765531,0.8476953907815631,0.8496993987975952,0.8517034068136272,0.8537074148296593,0.8557114228456913,0.8577154308617234,0.8597194388777555,0.8617234468937875,0.8637274549098196,0.8657314629258517,0.8677354709418837,0.8697394789579158,0.8717434869739479,0.87374749498998,0.875751503006012,0.8777555110220441,0.8797595190380761,0.8817635270541082,0.8837675350701403,0.8857715430861723,0.8877755511022044,0.8897795591182365,0.8917835671342685,0.8937875751503006,0.8957915831663327,0.8977955911823647,0.8997995991983968,0.9018036072144289,0.9038076152304609,0.905811623246493,0.9078156312625251,0.9098196392785571,0.9118236472945892,0.9138276553106213,0.9158316633266533,0.9178356713426854,0.9198396793587175,0.9218436873747495,0.9238476953907816,0.9258517034068137,0.9278557114228457,0.9298597194388778,0.9318637274549099,0.9338677354709419,0.935871743486974,0.9378757515030061,0.9398797595190381,0.9418837675350702,0.9438877755511023,0.9458917835671342,0.9478957915831663,0.9498997995991983,0.9519038076152304,0.9539078156312625,0.9559118236472945,0.9579158316633266,0.9599198396793587,0.9619238476953907,0.9639278557114228,0.9659318637274549,0.9679358717434869,0.969939879759519,0.9719438877755511,0.9739478957915831,0.9759519038076152,0.9779559118236473,0.9799599198396793,0.9819639278557114,0.9839679358717435,0.9859719438877755,0.9879759519038076,0.9899799599198397,0.9919839679358717,0.9939879759519038,0.9959919839679359,0.9979959919839679,1.0]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_subnormal.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_subnormal.json
new file mode 100644
index 000000000000..dc4d68726942
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_subnormal.json
@@ -0,0 +1 @@
+{"expected":[1.1920928955078125e-7,2.384185791015625e-7,3.5762786865234375e-7,4.76837158203125e-7,5.960464477539062e-7,7.152557373046875e-7,8.344650268554688e-7,9.5367431640625e-7,1.0728836059570312e-6,1.1920928955078125e-6,1.3113021850585938e-6,1.430511474609375e-6,1.5497207641601562e-6,1.6689300537109375e-6,1.7881393432617188e-6,1.9073486328125e-6,2.0265579223632812e-6,2.1457672119140625e-6,2.2649765014648438e-6,2.384185791015625e-6,2.5033950805664062e-6,2.6226043701171875e-6,2.7418136596679688e-6,2.86102294921875e-6,2.9802322387695312e-6,3.0994415283203125e-6,3.2186508178710938e-6,3.337860107421875e-6,3.4570693969726562e-6,3.5762786865234375e-6,3.6954879760742188e-6,3.814697265625e-6,3.933906555175781e-6,4.0531158447265625e-6,4.172325134277344e-6,4.291534423828125e-6,4.410743713378906e-6,4.5299530029296875e-6,4.649162292480469e-6,4.76837158203125e-6,4.887580871582031e-6,5.0067901611328125e-6,5.125999450683594e-6,5.245208740234375e-6,5.364418029785156e-6,5.4836273193359375e-6,5.602836608886719e-6,5.7220458984375e-6,5.841255187988281e-6,5.9604644775390625e-6,6.079673767089844e-6,6.198883056640625e-6,6.318092346191406e-6,6.4373016357421875e-6,6.556510925292969e-6,6.67572021484375e-6,6.794929504394531e-6,6.9141387939453125e-6,7.033348083496094e-6,7.212162017822266e-6,7.331371307373047e-6,7.450580596923828e-6,7.569789886474609e-6,7.68899917602539e-6,7.808208465576172e-6,7.927417755126953e-6,8.046627044677734e-6,8.165836334228516e-6,8.285045623779297e-6,8.404254913330078e-6,8.52346420288086e-6,8.64267349243164e-6,8.761882781982422e-6,8.881092071533203e-6,9.000301361083984e-6,9.119510650634766e-6,9.238719940185547e-6,9.357929229736328e-6,9.47713851928711e-6,9.59634780883789e-6,9.715557098388672e-6,9.834766387939453e-6,9.953975677490234e-6,1.0073184967041016e-5,1.0192394256591797e-5,1.0311603546142578e-5,1.043081283569336e-5,1.055002212524414e-5,1.0669231414794922e-5,1.0788440704345703e-5,1.0907649993896484e-5,1.1026859283447266e-5,1.1146068572998047e-5,1.1265277862548828e-5,1.138448715209961e-5,1.150369644165039e-5,1.1622905731201172e-5,1.1742115020751953e-5,1.1861324310302734e-5,1.1980533599853516e-5,1.2099742889404297e-5,1.2218952178955078e-5,1.233816146850586e-5,1.245737075805664e-5,1.2576580047607422e-5,1.2695789337158203e-5,1.2814998626708984e-5,1.2934207916259766e-5,1.3053417205810547e-5,1.3172626495361328e-5,1.329183578491211e-5,1.341104507446289e-5,1.3530254364013672e-5,1.3649463653564453e-5,1.3768672943115234e-5,1.3887882232666016e-5,1.4007091522216797e-5,1.4126300811767578e-5,1.424551010131836e-5,1.436471939086914e-5,1.4483928680419922e-5,1.4603137969970703e-5,1.4722347259521484e-5,1.4841556549072266e-5,1.4960765838623047e-5,1.5079975128173828e-5,1.519918441772461e-5,1.531839370727539e-5,1.5437602996826172e-5,1.5556812286376953e-5,1.5676021575927734e-5,1.5854835510253906e-5,1.5974044799804688e-5,1.609325408935547e-5,1.621246337890625e-5,1.633167266845703e-5,1.6450881958007812e-5,1.6570091247558594e-5,1.6689300537109375e-5,1.6808509826660156e-5,1.6927719116210938e-5,1.704692840576172e-5,1.71661376953125e-5,1.728534698486328e-5,1.7404556274414062e-5,1.7523765563964844e-5,1.7642974853515625e-5,1.7762184143066406e-5,1.7881393432617188e-5,1.800060272216797e-5,1.811981201171875e-5,1.823902130126953e-5,1.8358230590820312e-5,1.8477439880371094e-5,1.8596649169921875e-5,1.8715858459472656e-5,1.8835067749023438e-5,1.895427703857422e-5,1.9073486328125e-5,1.919269561767578e-5,1.9311904907226562e-5,1.9431114196777344e-5,1.9550323486328125e-5,1.9669532775878906e-5,1.9788742065429688e-5,1.990795135498047e-5,2.002716064453125e-5,2.014636993408203e-5,2.0265579223632812e-5,2.0384788513183594e-5,2.0503997802734375e-5,2.0623207092285156e-5,2.0742416381835938e-5,2.086162567138672e-5,2.09808349609375e-5,2.110004425048828e-5,2.1219253540039062e-5,2.1338462829589844e-5,2.1457672119140625e-5,2.1576881408691406e-5,2.1696090698242188e-5,2.181529998779297e-5,2.193450927734375e-5,2.205371856689453e-5,2.2172927856445312e-5,2.2292137145996094e-5,2.2411346435546875e-5,2.2530555725097656e-5,2.2649765014648438e-5,2.276897430419922e-5,2.288818359375e-5,2.300739288330078e-5,2.3126602172851562e-5,2.3245811462402344e-5,2.3365020751953125e-5,2.3484230041503906e-5,2.3603439331054688e-5,2.372264862060547e-5,2.384185791015625e-5,2.396106719970703e-5,2.4080276489257812e-5,2.4199485778808594e-5,2.4318695068359375e-5,2.4497509002685547e-5,2.4616718292236328e-5,2.473592758178711e-5,2.485513687133789e-5,2.4974346160888672e-5,2.5093555450439453e-5,2.5212764739990234e-5,2.5331974029541016e-5,2.5451183319091797e-5,2.5570392608642578e-5,2.568960189819336e-5,2.580881118774414e-5,2.5928020477294922e-5,2.6047229766845703e-5,2.6166439056396484e-5,2.6285648345947266e-5,2.6404857635498047e-5,2.6524066925048828e-5,2.664327621459961e-5,2.676248550415039e-5,2.6881694793701172e-5,2.7000904083251953e-5,2.7120113372802734e-5,2.7239322662353516e-5,2.7358531951904297e-5,2.7477741241455078e-5,2.759695053100586e-5,2.771615982055664e-5,2.7835369110107422e-5,2.7954578399658203e-5,2.8073787689208984e-5,2.8192996978759766e-5,2.8312206268310547e-5,2.8431415557861328e-5,2.855062484741211e-5,2.866983413696289e-5,2.8789043426513672e-5,2.8908252716064453e-5,2.9027462005615234e-5,2.9146671295166016e-5,2.9265880584716797e-5,2.9385089874267578e-5,2.950429916381836e-5,2.962350845336914e-5,2.9742717742919922e-5,2.9861927032470703e-5,2.9981136322021484e-5,3.0100345611572266e-5,3.0219554901123047e-5,3.0338764190673828e-5,3.045797348022461e-5,3.057718276977539e-5,3.069639205932617e-5,3.081560134887695e-5,3.0934810638427734e-5,3.1054019927978516e-5,3.11732292175293e-5,3.129243850708008e-5,3.141164779663086e-5,3.153085708618164e-5,3.165006637573242e-5,3.17692756652832e-5,3.1888484954833984e-5,3.2007694244384766e-5,3.212690353393555e-5,3.224611282348633e-5,3.236532211303711e-5,3.248453140258789e-5,3.260374069213867e-5,3.272294998168945e-5,3.2842159271240234e-5,3.2961368560791016e-5,3.314018249511719e-5,3.325939178466797e-5,3.337860107421875e-5,3.349781036376953e-5,3.361701965332031e-5,3.3736228942871094e-5,3.3855438232421875e-5,3.3974647521972656e-5,3.409385681152344e-5,3.421306610107422e-5,3.4332275390625e-5,3.445148468017578e-5,3.457069396972656e-5,3.4689903259277344e-5,3.4809112548828125e-5,3.4928321838378906e-5,3.504753112792969e-5,3.516674041748047e-5,3.528594970703125e-5,3.540515899658203e-5,3.552436828613281e-5,3.5643577575683594e-5,3.5762786865234375e-5,3.5881996154785156e-5,3.600120544433594e-5,3.612041473388672e-5,3.62396240234375e-5,3.635883331298828e-5,3.647804260253906e-5,3.6597251892089844e-5,3.6716461181640625e-5,3.6835670471191406e-5,3.695487976074219e-5,3.707408905029297e-5,3.719329833984375e-5,3.731250762939453e-5,3.743171691894531e-5,3.7550926208496094e-5,3.7670135498046875e-5,3.7789344787597656e-5,3.790855407714844e-5,3.802776336669922e-5,3.814697265625e-5,3.826618194580078e-5,3.838539123535156e-5,3.8504600524902344e-5,3.8623809814453125e-5,3.8743019104003906e-5,3.886222839355469e-5,3.898143768310547e-5,3.910064697265625e-5,3.921985626220703e-5,3.933906555175781e-5,3.9458274841308594e-5,3.9577484130859375e-5,3.9696693420410156e-5,3.981590270996094e-5,3.993511199951172e-5,4.00543212890625e-5,4.017353057861328e-5,4.029273986816406e-5,4.0411949157714844e-5,4.0531158447265625e-5,4.0650367736816406e-5,4.076957702636719e-5,4.088878631591797e-5,4.100799560546875e-5,4.112720489501953e-5,4.124641418457031e-5,4.1365623474121094e-5,4.1484832763671875e-5,4.166364669799805e-5,4.178285598754883e-5,4.190206527709961e-5,4.202127456665039e-5,4.214048385620117e-5,4.225969314575195e-5,4.2378902435302734e-5,4.2498111724853516e-5,4.26173210144043e-5,4.273653030395508e-5,4.285573959350586e-5,4.297494888305664e-5,4.309415817260742e-5,4.32133674621582e-5,4.3332576751708984e-5,4.3451786041259766e-5,4.357099533081055e-5,4.369020462036133e-5,4.380941390991211e-5,4.392862319946289e-5,4.404783248901367e-5,4.416704177856445e-5,4.4286251068115234e-5,4.4405460357666016e-5,4.45246696472168e-5,4.464387893676758e-5,4.476308822631836e-5,4.488229751586914e-5,4.500150680541992e-5,4.51207160949707e-5,4.5239925384521484e-5,4.5359134674072266e-5,4.547834396362305e-5,4.559755325317383e-5,4.571676254272461e-5,4.583597183227539e-5,4.595518112182617e-5,4.607439041137695e-5,4.6193599700927734e-5,4.6312808990478516e-5,4.64320182800293e-5,4.655122756958008e-5,4.667043685913086e-5,4.678964614868164e-5,4.690885543823242e-5,4.70280647277832e-5,4.7147274017333984e-5,4.7266483306884766e-5,4.738569259643555e-5,4.750490188598633e-5,4.762411117553711e-5,4.774332046508789e-5,4.786252975463867e-5,4.798173904418945e-5,4.8100948333740234e-5,4.8220157623291016e-5,4.83393669128418e-5,4.845857620239258e-5,4.857778549194336e-5,4.869699478149414e-5,4.881620407104492e-5,4.89354133605957e-5,4.9054622650146484e-5,4.9173831939697266e-5,4.929304122924805e-5,4.941225051879883e-5,4.953145980834961e-5,4.965066909790039e-5,4.976987838745117e-5,4.988908767700195e-5,5.0008296966552734e-5,5.0127506256103516e-5,5.030632019042969e-5,5.042552947998047e-5,5.054473876953125e-5,5.066394805908203e-5,5.078315734863281e-5,5.0902366638183594e-5,5.1021575927734375e-5,5.1140785217285156e-5,5.125999450683594e-5,5.137920379638672e-5,5.14984130859375e-5,5.161762237548828e-5,5.173683166503906e-5,5.1856040954589844e-5,5.1975250244140625e-5,5.2094459533691406e-5,5.221366882324219e-5,5.233287811279297e-5,5.245208740234375e-5,5.257129669189453e-5,5.269050598144531e-5,5.2809715270996094e-5,5.2928924560546875e-5,5.3048133850097656e-5,5.316734313964844e-5,5.328655242919922e-5,5.340576171875e-5,5.352497100830078e-5,5.364418029785156e-5,5.3763389587402344e-5,5.3882598876953125e-5,5.4001808166503906e-5,5.412101745605469e-5,5.424022674560547e-5,5.435943603515625e-5,5.447864532470703e-5,5.459785461425781e-5,5.4717063903808594e-5,5.4836273193359375e-5,5.4955482482910156e-5,5.507469177246094e-5,5.519390106201172e-5,5.53131103515625e-5,5.543231964111328e-5,5.555152893066406e-5,5.5670738220214844e-5,5.5789947509765625e-5,5.5909156799316406e-5,5.602836608886719e-5,5.614757537841797e-5,5.626678466796875e-5,5.638599395751953e-5,5.650520324707031e-5,5.6624412536621094e-5,5.6743621826171875e-5,5.6862831115722656e-5,5.698204040527344e-5,5.710124969482422e-5,5.7220458984375e-5,5.733966827392578e-5,5.745887756347656e-5,5.7578086853027344e-5,5.7697296142578125e-5,5.7816505432128906e-5,5.793571472167969e-5,5.805492401123047e-5,5.817413330078125e-5,5.829334259033203e-5,5.841255187988281e-5,5.8531761169433594e-5,5.8650970458984375e-5,5.8770179748535156e-5,5.894899368286133e-5,5.906820297241211e-5,5.918741226196289e-5,5.930662155151367e-5,5.942583084106445e-5,5.9545040130615234e-5,5.9664249420166016e-5,5.97834587097168e-5,5.990266799926758e-5,6.002187728881836e-5],"x":[1.0e-7,2.2004008016032063e-7,3.4008016032064126e-7,4.601202404809619e-7,5.801603206412825e-7,7.002004008016032e-7,8.202404809619238e-7,9.402805611222445e-7,1.0603206412825652e-6,1.1803607214428857e-6,1.3004008016032064e-6,1.420440881763527e-6,1.5404809619238476e-6,1.6605210420841683e-6,1.780561122244489e-6,1.9006012024048095e-6,2.0206412825651304e-6,2.1406813627254507e-6,2.2607214428857714e-6,2.380761523046092e-6,2.500801603206413e-6,2.6208416833667336e-6,2.7408817635270543e-6,2.8609218436873746e-6,2.9809619238476953e-6,3.101002004008016e-6,3.2210420841683367e-6,3.3410821643286574e-6,3.461122244488978e-6,3.5811623246492984e-6,3.701202404809619e-6,3.82124248496994e-6,3.94128256513026e-6,4.061322645290581e-6,4.1813627254509016e-6,4.301402805611222e-6,4.421442885771543e-6,4.541482965931864e-6,4.661523046092184e-6,4.781563126252505e-6,4.901603206412826e-6,5.0216432865731466e-6,5.141683366733467e-6,5.261723446893788e-6,5.381763527054108e-6,5.5018036072144286e-6,5.621843687374749e-6,5.74188376753507e-6,5.861923847695391e-6,5.981963927855711e-6,6.102004008016032e-6,6.222044088176353e-6,6.3420841683366735e-6,6.462124248496994e-6,6.582164328657315e-6,6.702204408817636e-6,6.8222444889779556e-6,6.942284569138276e-6,7.062324649298597e-6,7.182364729458918e-6,7.302404809619238e-6,7.422444889779559e-6,7.54248496993988e-6,7.6625250501002e-6,7.782565130260521e-6,7.902605210420841e-6,8.022645290581163e-6,8.142685370741483e-6,8.262725450901804e-6,8.382765531062124e-6,8.502805611222446e-6,8.622845691382765e-6,8.742885771543087e-6,8.862925851703407e-6,8.982965931863727e-6,9.103006012024048e-6,9.223046092184368e-6,9.34308617234469e-6,9.46312625250501e-6,9.583166332665331e-6,9.703206412825651e-6,9.823246492985973e-6,9.943286573146292e-6,1.0063326653306614e-5,1.0183366733466934e-5,1.0303406813627254e-5,1.0423446893787575e-5,1.0543486973947895e-5,1.0663527054108217e-5,1.0783567134268537e-5,1.0903607214428858e-5,1.1023647294589178e-5,1.11436873747495e-5,1.126372745490982e-5,1.1383767535070141e-5,1.150380761523046e-5,1.1623847695390782e-5,1.1743887775551102e-5,1.1863927855711422e-5,1.1983967935871744e-5,1.2104008016032064e-5,1.2224048096192385e-5,1.2344088176352705e-5,1.2464128256513026e-5,1.2584168336673346e-5,1.2704208416833668e-5,1.2824248496993988e-5,1.294428857715431e-5,1.306432865731463e-5,1.3184368737474949e-5,1.330440881763527e-5,1.342444889779559e-5,1.3544488977955912e-5,1.3664529058116232e-5,1.3784569138276553e-5,1.3904609218436873e-5,1.4024649298597195e-5,1.4144689378757515e-5,1.4264729458917836e-5,1.4384769539078156e-5,1.4504809619238478e-5,1.4624849699398798e-5,1.4744889779559117e-5,1.4864929859719439e-5,1.4984969939879759e-5,1.510501002004008e-5,1.52250501002004e-5,1.534509018036072e-5,1.5465130260521043e-5,1.5585170340681363e-5,1.5705210420841683e-5,1.5825250501002003e-5,1.5945290581162326e-5,1.6065330661322646e-5,1.6185370741482966e-5,1.6305410821643286e-5,1.6425450901803606e-5,1.654549098196393e-5,1.666553106212425e-5,1.678557114228457e-5,1.690561122244489e-5,1.7025651302605212e-5,1.7145691382765532e-5,1.726573146292585e-5,1.738577154308617e-5,1.750581162324649e-5,1.7625851703406815e-5,1.7745891783567134e-5,1.7865931863727454e-5,1.7985971943887774e-5,1.8106012024048097e-5,1.8226052104208417e-5,1.8346092184368737e-5,1.8466132264529057e-5,1.858617234468938e-5,1.87062124248497e-5,1.882625250501002e-5,1.894629258517034e-5,1.906633266533066e-5,1.9186372745490983e-5,1.9306412825651303e-5,1.9426452905811623e-5,1.9546492985971943e-5,1.9666533066132266e-5,1.9786573146292586e-5,1.9906613226452906e-5,2.0026653306613225e-5,2.014669338677355e-5,2.026673346693387e-5,2.038677354709419e-5,2.0506813627254508e-5,2.0626853707414828e-5,2.074689378757515e-5,2.086693386773547e-5,2.098697394789579e-5,2.110701402805611e-5,2.1227054108216434e-5,2.1347094188376754e-5,2.1467134268537074e-5,2.1587174348697394e-5,2.1707214428857717e-5,2.1827254509018037e-5,2.1947294589178357e-5,2.2067334669338677e-5,2.2187374749498997e-5,2.230741482965932e-5,2.242745490981964e-5,2.254749498997996e-5,2.266753507014028e-5,2.2787575150300603e-5,2.2907615230460923e-5,2.3027655310621242e-5,2.3147695390781562e-5,2.3267735470941882e-5,2.3387775551102205e-5,2.3507815631262525e-5,2.3627855711422845e-5,2.3747895791583165e-5,2.3867935871743488e-5,2.3987975951903808e-5,2.4108016032064128e-5,2.4228056112224448e-5,2.434809619238477e-5,2.446813627254509e-5,2.458817635270541e-5,2.470821643286573e-5,2.482825651302605e-5,2.4948296593186374e-5,2.5068336673346694e-5,2.5188376753507014e-5,2.5308416833667333e-5,2.5428456913827657e-5,2.5548496993987977e-5,2.5668537074148296e-5,2.5788577154308616e-5,2.590861723446894e-5,2.602865731462926e-5,2.614869739478958e-5,2.62687374749499e-5,2.638877755511022e-5,2.6508817635270542e-5,2.6628857715430862e-5,2.6748897795591182e-5,2.6868937875751502e-5,2.6988977955911825e-5,2.7109018036072145e-5,2.7229058116232465e-5,2.7349098196392785e-5,2.7469138276553105e-5,2.7589178356713428e-5,2.7709218436873748e-5,2.7829258517034068e-5,2.7949298597194387e-5,2.806933867735471e-5,2.818937875751503e-5,2.830941883767535e-5,2.842945891783567e-5,2.8549498997995993e-5,2.8669539078156313e-5,2.8789579158316633e-5,2.8909619238476953e-5,2.9029659318637273e-5,2.9149699398797596e-5,2.9269739478957916e-5,2.9389779559118236e-5,2.9509819639278556e-5,2.962985971943888e-5,2.97498997995992e-5,2.986993987975952e-5,2.998997995991984e-5,3.0110020040080162e-5,3.0230060120240482e-5,3.03501002004008e-5,3.047014028056112e-5,3.0590180360721445e-5,3.0710220440881765e-5,3.0830260521042084e-5,3.0950300601202404e-5,3.1070340681362724e-5,3.1190380761523044e-5,3.1310420841683364e-5,3.143046092184369e-5,3.155050100200401e-5,3.167054108216433e-5,3.179058116232465e-5,3.191062124248497e-5,3.203066132264529e-5,3.215070140280561e-5,3.227074148296593e-5,3.239078156312625e-5,3.2510821643286576e-5,3.2630861723446896e-5,3.2750901803607216e-5,3.2870941883767536e-5,3.2990981963927856e-5,3.3111022044088175e-5,3.3231062124248495e-5,3.3351102204408815e-5,3.3471142284569135e-5,3.359118236472946e-5,3.371122244488978e-5,3.38312625250501e-5,3.395130260521042e-5,3.407134268537074e-5,3.419138276553106e-5,3.431142284569138e-5,3.44314629258517e-5,3.455150300601203e-5,3.467154308617235e-5,3.479158316633267e-5,3.491162324649299e-5,3.503166332665331e-5,3.515170340681363e-5,3.527174348697395e-5,3.5391783567134266e-5,3.5511823647294586e-5,3.563186372745491e-5,3.575190380761523e-5,3.587194388777555e-5,3.599198396793587e-5,3.611202404809619e-5,3.623206412825651e-5,3.635210420841683e-5,3.647214428857715e-5,3.659218436873747e-5,3.67122244488978e-5,3.683226452905812e-5,3.695230460921844e-5,3.707234468937876e-5,3.719238476953908e-5,3.73124248496994e-5,3.743246492985972e-5,3.755250501002004e-5,3.767254509018036e-5,3.7792585170340684e-5,3.7912625250501004e-5,3.8032665330661324e-5,3.8152705410821644e-5,3.8272745490981964e-5,3.8392785571142283e-5,3.85128256513026e-5,3.863286573146292e-5,3.875290581162325e-5,3.887294589178357e-5,3.899298597194389e-5,3.911302605210421e-5,3.923306613226453e-5,3.935310621242485e-5,3.947314629258517e-5,3.959318637274549e-5,3.971322645290581e-5,3.9833266533066135e-5,3.9953306613226455e-5,4.0073346693386775e-5,4.0193386773547095e-5,4.0313426853707415e-5,4.0433466933867735e-5,4.0553507014028055e-5,4.0673547094188374e-5,4.0793587174348694e-5,4.091362725450902e-5,4.103366733466934e-5,4.115370741482966e-5,4.127374749498998e-5,4.13937875751503e-5,4.151382765531062e-5,4.163386773547094e-5,4.175390781563126e-5,4.187394789579158e-5,4.1993987975951907e-5,4.2114028056112226e-5,4.2234068136272546e-5,4.2354108216432866e-5,4.2474148296593186e-5,4.2594188376753506e-5,4.2714228456913826e-5,4.2834268537074146e-5,4.295430861723447e-5,4.307434869739479e-5,4.319438877755511e-5,4.331442885771543e-5,4.343446893787575e-5,4.355450901803607e-5,4.367454909819639e-5,4.379458917835671e-5,4.391462925851703e-5,4.403466933867736e-5,4.415470941883768e-5,4.4274749498998e-5,4.439478957915832e-5,4.451482965931864e-5,4.463486973947896e-5,4.475490981963928e-5,4.48749498997996e-5,4.499498997995992e-5,4.511503006012024e-5,4.523507014028056e-5,4.535511022044088e-5,4.54751503006012e-5,4.559519038076152e-5,4.571523046092184e-5,4.583527054108216e-5,4.595531062124248e-5,4.60753507014028e-5,4.619539078156313e-5,4.631543086172345e-5,4.643547094188377e-5,4.655551102204409e-5,4.667555110220441e-5,4.679559118236473e-5,4.691563126252505e-5,4.703567134268537e-5,4.7155711422845695e-5,4.7275751503006014e-5,4.7395791583166334e-5,4.7515831663326654e-5,4.7635871743486974e-5,4.7755911823647294e-5,4.7875951903807614e-5,4.7995991983967934e-5,4.8116032064128254e-5,4.823607214428858e-5,4.83561122244489e-5,4.847615230460922e-5,4.859619238476954e-5,4.871623246492986e-5,4.883627254509018e-5,4.89563126252505e-5,4.907635270541082e-5,4.919639278557114e-5,4.9316432865731466e-5,4.9436472945891786e-5,4.9556513026052105e-5,4.9676553106212425e-5,4.9796593186372745e-5,4.9916633266533065e-5,5.0036673346693385e-5,5.0156713426853705e-5,5.027675350701403e-5,5.039679358717435e-5,5.051683366733467e-5,5.063687374749499e-5,5.075691382765531e-5,5.087695390781563e-5,5.099699398797595e-5,5.111703406813627e-5,5.123707414829659e-5,5.135711422845692e-5,5.147715430861724e-5,5.159719438877756e-5,5.1717234468937877e-5,5.1837274549098196e-5,5.1957314629258516e-5,5.2077354709418836e-5,5.2197394789579156e-5,5.2317434869739476e-5,5.24374749498998e-5,5.255751503006012e-5,5.267755511022044e-5,5.279759519038076e-5,5.291763527054108e-5,5.30376753507014e-5,5.315771543086172e-5,5.327775551102204e-5,5.339779559118236e-5,5.351783567134269e-5,5.363787575150301e-5,5.375791583166333e-5,5.387795591182365e-5,5.399799599198397e-5,5.411803607214429e-5,5.423807615230461e-5,5.435811623246493e-5,5.4478156312625254e-5,5.4598196392785574e-5,5.4718236472945894e-5,5.4838276553106213e-5,5.495831663326653e-5,5.507835671342685e-5,5.519839679358717e-5,5.531843687374749e-5,5.543847695390781e-5,5.555851703406814e-5,5.567855711422846e-5,5.579859719438878e-5,5.59186372745491e-5,5.603867735470942e-5,5.615871743486974e-5,5.627875751503006e-5,5.639879759519038e-5,5.65188376753507e-5,5.6638877755511025e-5,5.6758917835671345e-5,5.6878957915831665e-5,5.6998997995991985e-5,5.7119038076152304e-5,5.7239078156312624e-5,5.7359118236472944e-5,5.7479158316633264e-5,5.7599198396793584e-5,5.771923847695391e-5,5.783927855711423e-5,5.795931863727455e-5,5.807935871743487e-5,5.819939879759519e-5,5.831943887775551e-5,5.843947895791583e-5,5.855951903807615e-5,5.8679559118236476e-5,5.8799599198396796e-5,5.8919639278557116e-5,5.9039679358717436e-5,5.9159719438877756e-5,5.9279759519038076e-5,5.9399799599198395e-5,5.9519839679358715e-5,5.9639879759519035e-5,5.975991983967936e-5,5.987995991983968e-5,6.0e-5]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_tiny.json b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_tiny.json
new file mode 100644
index 000000000000..97bde82880bb
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/positive_tiny.json
@@ -0,0 +1 @@
+{"expected":[0.00010001659393310547,0.00010180473327636719,0.0001035928726196289,0.00010544061660766602,0.00010722875595092773,0.00010901689529418945,0.00011080503463745117,0.00011265277862548828,0.00011444091796875,0.00011622905731201172,0.00011801719665527344,0.00011986494064331055,0.00012165307998657227,0.00012350082397460938,0.0001252889633178711,0.0001270771026611328,0.00012886524200439453,0.00013065338134765625,0.00013244152069091797,0.0001342296600341797,0.0001360177993774414,0.0001379251480102539,0.00013971328735351562,0.00014150142669677734,0.00014328956604003906,0.00014507770538330078,0.0001468658447265625,0.00014865398406982422,0.00015044212341308594,0.00015234947204589844,0.00015413761138916016,0.00015592575073242188,0.0001577138900756836,0.0001595020294189453,0.00016129016876220703,0.00016307830810546875,0.00016498565673828125,0.00016677379608154297,0.0001685619354248047,0.0001703500747680664,0.00017213821411132812,0.00017392635345458984,0.00017571449279785156,0.00017750263214111328,0.00017940998077392578,0.0001811981201171875,0.00018298625946044922,0.00018477439880371094,0.00018656253814697266,0.00018835067749023438,0.0001901388168334961,0.0001919269561767578,0.0001938343048095703,0.00019562244415283203,0.00019741058349609375,0.00019919872283935547,0.0002009868621826172,0.0002027750015258789,0.00020456314086914062,0.00020647048950195312,0.00020825862884521484,0.00021004676818847656,0.00021183490753173828,0.000213623046875,0.00021541118621826172,0.00021719932556152344,0.00021898746490478516,0.00022089481353759766,0.00022268295288085938,0.0002244710922241211,0.0002262592315673828,0.00022804737091064453,0.00022983551025390625,0.00023162364959716797,0.0002334117889404297,0.0002353191375732422,0.0002371072769165039,0.00023889541625976562,0.00024068355560302734,0.00024247169494628906,0.00024437904357910156,0.0002460479736328125,0.000247955322265625,0.00024962425231933594,0.00025153160095214844,0.0002532005310058594,0.0002551078796386719,0.0002570152282714844,0.0002586841583251953,0.0002605915069580078,0.00026226043701171875,0.00026416778564453125,0.0002658367156982422,0.0002677440643310547,0.0002696514129638672,0.0002713203430175781,0.0002732276916503906,0.00027489662170410156,0.00027680397033691406,0.000278472900390625,0.0002803802490234375,0.00028204917907714844,0.00028395652770996094,0.00028586387634277344,0.0002875328063964844,0.0002894401550292969,0.0002911090850830078,0.0002930164337158203,0.00029468536376953125,0.00029659271240234375,0.00029850006103515625,0.0003001689910888672,0.0003020763397216797,0.0003037452697753906,0.0003056526184082031,0.00030732154846191406,0.00030922889709472656,0.00031113624572753906,0.00031280517578125,0.0003147125244140625,0.00031638145446777344,0.00031828880310058594,0.0003199577331542969,0.0003218650817871094,0.0003235340118408203,0.0003254413604736328,0.0003273487091064453,0.00032901763916015625,0.00033092498779296875,0.0003325939178466797,0.0003345012664794922,0.0003361701965332031,0.0003380775451660156,0.0003399848937988281,0.00034165382385253906,0.00034356117248535156,0.0003452301025390625,0.000347137451171875,0.00034880638122558594,0.00035071372985839844,0.00035262107849121094,0.0003542900085449219,0.0003561973571777344,0.0003578662872314453,0.0003597736358642578,0.00036144256591796875,0.00036334991455078125,0.0003650188446044922,0.0003669261932373047,0.0003688335418701172,0.0003705024719238281,0.0003724098205566406,0.00037407875061035156,0.00037598609924316406,0.000377655029296875,0.0003795623779296875,0.0003814697265625,0.00038313865661621094,0.00038504600524902344,0.0003867149353027344,0.0003886222839355469,0.0003902912139892578,0.0003921985626220703,0.0003941059112548828,0.00039577484130859375,0.00039768218994140625,0.0003993511199951172,0.0004012584686279297,0.0004029273986816406,0.0004048347473144531,0.00040650367736816406,0.00040841102600097656,0.00041031837463378906,0.0004119873046875,0.0004138946533203125,0.00041556358337402344,0.00041747093200683594,0.0004191398620605469,0.0004210472106933594,0.0004229545593261719,0.0004246234893798828,0.0004265308380126953,0.00042819976806640625,0.00043010711669921875,0.0004317760467529297,0.0004336833953857422,0.0004353523254394531,0.0004372596740722656,0.0004391670227050781,0.00044083595275878906,0.00044274330139160156,0.0004444122314453125,0.000446319580078125,0.00044798851013183594,0.00044989585876464844,0.00045180320739746094,0.0004534721374511719,0.0004553794860839844,0.0004570484161376953,0.0004589557647705078,0.00046062469482421875,0.00046253204345703125,0.00046443939208984375,0.0004661083221435547,0.0004680156707763672,0.0004696846008300781,0.0004715919494628906,0.00047326087951660156,0.00047516822814941406,0.000476837158203125,0.0004787445068359375,0.00048065185546875,0.00048232078552246094,0.00048422813415527344,0.0004858970642089844,0.0004878044128417969,0.0004897117614746094,0.0004916191101074219,0.0004930496215820312,0.0004949569702148438,0.0004968643188476562,0.0004987716674804688,0.0005002021789550781,0.0005021095275878906,0.0005040168762207031,0.0005059242248535156,0.0005078315734863281,0.0005092620849609375,0.00051116943359375,0.0005130767822265625,0.000514984130859375,0.0005164146423339844,0.0005183219909667969,0.0005202293395996094,0.0005221366882324219,0.0005240440368652344,0.0005254745483398438,0.0005273818969726562,0.0005292892456054688,0.0005311965942382812,0.0005331039428710938,0.0005345344543457031,0.0005364418029785156,0.0005383491516113281,0.0005402565002441406,0.00054168701171875,0.0005435943603515625,0.000545501708984375,0.0005474090576171875,0.00054931640625,0.0005507469177246094,0.0005526542663574219,0.0005545616149902344,0.0005564689636230469,0.0005578994750976562,0.0005598068237304688,0.0005617141723632812,0.0005636215209960938,0.0005655288696289062,0.0005669593811035156,0.0005688667297363281,0.0005707740783691406,0.0005726814270019531,0.0005741119384765625,0.000576019287109375,0.0005779266357421875,0.000579833984375,0.0005817413330078125,0.0005831718444824219,0.0005850791931152344,0.0005869865417480469,0.0005888938903808594,0.0005908012390136719,0.0005922317504882812,0.0005941390991210938,0.0005960464477539062,0.0005979537963867188,0.0005993843078613281,0.0006012916564941406,0.0006031990051269531,0.0006051063537597656,0.0006070137023925781,0.0006084442138671875,0.0006103515625,0.0006122589111328125,0.000614166259765625,0.0006155967712402344,0.0006175041198730469,0.0006194114685058594,0.0006213188171386719,0.0006232261657714844,0.0006246566772460938,0.0006265640258789062,0.0006284713745117188,0.0006303787231445312,0.0006322860717773438,0.0006337165832519531,0.0006356239318847656,0.0006375312805175781,0.0006394386291503906,0.000640869140625,0.0006427764892578125,0.000644683837890625,0.0006465911865234375,0.00064849853515625,0.0006499290466308594,0.0006518363952636719,0.0006537437438964844,0.0006556510925292969,0.0006570816040039062,0.0006589889526367188,0.0006608963012695312,0.0006628036499023438,0.0006647109985351562,0.0006661415100097656,0.0006680488586425781,0.0006699562072753906,0.0006718635559082031,0.0006737709045410156,0.000675201416015625,0.0006771087646484375,0.00067901611328125,0.0006809234619140625,0.0006823539733886719,0.0006842613220214844,0.0006861686706542969,0.0006880760192871094,0.0006899833679199219,0.0006914138793945312,0.0006933212280273438,0.0006952285766601562,0.0006971359252929688,0.0006985664367675781,0.0007004737854003906,0.0007023811340332031,0.0007042884826660156,0.0007061958312988281,0.0007076263427734375,0.00070953369140625,0.0007114410400390625,0.000713348388671875,0.0007152557373046875,0.0007166862487792969,0.0007185935974121094,0.0007205009460449219,0.0007224082946777344,0.0007238388061523438,0.0007257461547851562,0.0007276535034179688,0.0007295608520507812,0.0007314682006835938,0.0007328987121582031,0.0007348060607910156,0.0007367134094238281,0.0007386207580566406,0.00074005126953125,0.0007419586181640625,0.000743865966796875,0.0007457733154296875,0.0007476806640625,0.0007491111755371094,0.0007510185241699219,0.0007529258728027344,0.0007548332214355469,0.0007567405700683594,0.0007581710815429688,0.0007600784301757812,0.0007619857788085938,0.0007638931274414062,0.0007653236389160156,0.0007672309875488281,0.0007691383361816406,0.0007710456848144531,0.0007729530334472656,0.000774383544921875,0.0007762908935546875,0.0007781982421875,0.0007801055908203125,0.0007815361022949219,0.0007834434509277344,0.0007853507995605469,0.0007872581481933594,0.0007891654968261719,0.0007905960083007812,0.0007925033569335938,0.0007944107055664062,0.0007963180541992188,0.0007982254028320312,0.0007996559143066406,0.0008015632629394531,0.0008034706115722656,0.0008053779602050781,0.0008068084716796875,0.0008087158203125,0.0008106231689453125,0.000812530517578125,0.0008144378662109375,0.0008158683776855469,0.0008177757263183594,0.0008196830749511719,0.0008215904235839844,0.0008230209350585938,0.0008249282836914062,0.0008268356323242188,0.0008287429809570312,0.0008306503295898438,0.0008320808410644531,0.0008339881896972656,0.0008358955383300781,0.0008378028869628906,0.0008397102355957031,0.0008411407470703125,0.000843048095703125,0.0008449554443359375,0.00084686279296875,0.0008482933044433594,0.0008502006530761719,0.0008521080017089844,0.0008540153503417969,0.0008559226989746094,0.0008573532104492188,0.0008592605590820312,0.0008611679077148438,0.0008630752563476562,0.0008645057678222656,0.0008664131164550781,0.0008683204650878906,0.0008702278137207031,0.0008721351623535156,0.000873565673828125,0.0008754730224609375,0.00087738037109375,0.0008792877197265625,0.000881195068359375,0.0008826255798339844,0.0008845329284667969,0.0008864402770996094,0.0008883476257324219,0.0008897781372070312,0.0008916854858398438,0.0008935928344726562,0.0008955001831054688,0.0008974075317382812,0.0008988380432128906,0.0009007453918457031,0.0009026527404785156,0.0009045600891113281,0.0009059906005859375,0.00090789794921875,0.0009098052978515625,0.000911712646484375,0.0009136199951171875,0.0009150505065917969,0.0009169578552246094,0.0009188652038574219,0.0009207725524902344,0.0009226799011230469,0.0009241104125976562,0.0009260177612304688,0.0009279251098632812,0.0009298324584960938,0.0009312629699707031,0.0009331703186035156,0.0009350776672363281,0.0009369850158691406,0.0009388923645019531,0.0009403228759765625,0.000942230224609375,0.0009441375732421875,0.000946044921875,0.0009474754333496094,0.0009493827819824219,0.0009512901306152344,0.0009531974792480469,0.0009551048278808594,0.0009565353393554688,0.0009584426879882812,0.0009603500366210938,0.0009622573852539062,0.0009641647338867188,0.0009655952453613281,0.0009675025939941406,0.0009694099426269531,0.0009713172912597656,0.000972747802734375,0.0009746551513671875,0.0009765625,0.0009784698486328125,0.000980377197265625,0.0009822845458984375,0.00098419189453125,0.0009851455688476562,0.0009870529174804688,0.0009889602661132812,0.0009908676147460938,0.0009927749633789062,0.0009946823120117188,0.0009965896606445312,0.0009984970092773438,0.0010004043579101562],"x":[0.0001,0.00010180360721442886,0.00010360721442885771,0.00010541082164328658,0.00010721442885771543,0.00010901803607214429,0.00011082164328657314,0.00011262525050100201,0.00011442885771543086,0.00011623246492985972,0.00011803607214428858,0.00011983967935871744,0.00012164328657314629,0.00012344689378757516,0.000125250501002004,0.00012705410821643286,0.00012885771543086173,0.00013066132264529057,0.00013246492985971944,0.0001342685370741483,0.00013607214428857715,0.00013787575150300601,0.00013967935871743488,0.00014148296593186372,0.0001432865731462926,0.00014509018036072146,0.0001468937875751503,0.00014869739478957916,0.000150501002004008,0.00015230460921843687,0.00015410821643286574,0.00015591182364729458,0.00015771543086172345,0.0001595190380761523,0.00016132264529058115,0.00016312625250501002,0.0001649298597194389,0.00016673346693386773,0.0001685370741482966,0.00017034068136272546,0.0001721442885771543,0.00017394789579158317,0.00017575150300601204,0.00017755511022044088,0.00017935871743486975,0.00018116232464929859,0.00018296593186372745,0.00018476953907815632,0.00018657314629258516,0.00018837675350701403,0.0001901803607214429,0.00019198396793587173,0.0001937875751503006,0.00019559118236472947,0.0001973947895791583,0.00019919839679358718,0.00020100200400801604,0.00020280561122244488,0.00020460921843687375,0.00020641282565130262,0.00020821643286573146,0.00021002004008016033,0.00021182364729458917,0.00021362725450901803,0.0002154308617234469,0.00021723446893787574,0.0002190380761523046,0.00022084168336673348,0.00022264529058116232,0.00022444889779559118,0.00022625250501002005,0.0002280561122244489,0.00022985971943887776,0.00023166332665330663,0.00023346693386773547,0.00023527054108216433,0.0002370741482965932,0.00023887775551102204,0.0002406813627254509,0.00024248496993987975,0.0002442885771543086,0.00024609218436873745,0.00024789579158316635,0.0002496993987975952,0.00025150300601202403,0.0002533066132264529,0.00025511022044088176,0.0002569138276553106,0.0002587174348697395,0.00026052104208416834,0.0002623246492985972,0.0002641282565130261,0.0002659318637274549,0.00026773547094188375,0.00026953907815631265,0.0002713426853707415,0.00027314629258517033,0.0002749498997995992,0.00027675350701402806,0.0002785571142284569,0.0002803607214428858,0.00028216432865731464,0.0002839679358717435,0.0002857715430861723,0.0002875751503006012,0.00028937875751503005,0.0002911823647294589,0.0002929859719438878,0.00029478957915831663,0.00029659318637274547,0.00029839679358717436,0.0003002004008016032,0.00030200400801603204,0.00030380761523046094,0.0003056112224448898,0.0003074148296593186,0.0003092184368737475,0.00031102204408817635,0.0003128256513026052,0.0003146292585170341,0.0003164328657314629,0.00031823647294589177,0.00032004008016032066,0.0003218436873747495,0.00032364729458917834,0.00032545090180360724,0.0003272545090180361,0.0003290581162324649,0.0003308617234468938,0.00033266533066132265,0.0003344689378757515,0.0003362725450901804,0.0003380761523046092,0.00033987975951903807,0.00034168336673346696,0.0003434869739478958,0.00034529058116232464,0.0003470941883767535,0.0003488977955911824,0.0003507014028056112,0.00035250501002004006,0.00035430861723446895,0.0003561122244488978,0.00035791583166332663,0.0003597194388777555,0.00036152304609218436,0.0003633266533066132,0.0003651302605210421,0.00036693386773547094,0.0003687374749498998,0.0003705410821643287,0.0003723446893787575,0.00037414829659318635,0.00037595190380761525,0.0003777555110220441,0.00037955911823647293,0.0003813627254509018,0.00038316633266533066,0.0003849699398797595,0.0003867735470941884,0.00038857715430861724,0.0003903807615230461,0.00039218436873747497,0.0003939879759519038,0.00039579158316633265,0.00039759519038076155,0.0003993987975951904,0.00040120240480961923,0.0004030060120240481,0.00040480961923847696,0.0004066132264529058,0.00040841683366733464,0.00041022044088176354,0.0004120240480961924,0.0004138276553106212,0.0004156312625250501,0.00041743486973947895,0.0004192384769539078,0.0004210420841683367,0.0004228456913827655,0.00042464929859719437,0.00042645290581162326,0.0004282565130260521,0.00043006012024048094,0.00043186372745490984,0.0004336673346693387,0.0004354709418837675,0.0004372745490981964,0.00043907815631262525,0.0004408817635270541,0.000442685370741483,0.0004444889779559118,0.00044629258517034067,0.00044809619238476956,0.0004498997995991984,0.00045170340681362724,0.00045350701402805614,0.000455310621242485,0.0004571142284569138,0.0004589178356713427,0.00046072144288577155,0.0004625250501002004,0.0004643286573146293,0.0004661322645290581,0.00046793587174348696,0.0004697394789579158,0.0004715430861723447,0.00047334669338677354,0.0004751503006012024,0.0004769539078156313,0.0004787575150300601,0.00048056112224448895,0.00048236472945891785,0.0004841683366733467,0.00048597194388777553,0.0004877755511022044,0.0004895791583166333,0.0004913827655310621,0.000493186372745491,0.0004949899799599199,0.0004967935871743487,0.0004985971943887776,0.0005004008016032064,0.0005022044088176353,0.0005040080160320641,0.0005058116232464929,0.0005076152304609218,0.0005094188376753507,0.0005112224448897795,0.0005130260521042084,0.0005148296593186373,0.0005166332665330661,0.000518436873747495,0.0005202404809619239,0.0005220440881763527,0.0005238476953907816,0.0005256513026052104,0.0005274549098196392,0.0005292585170340681,0.000531062124248497,0.0005328657314629258,0.0005346693386773547,0.0005364729458917836,0.0005382765531062124,0.0005400801603206413,0.0005418837675350702,0.000543687374749499,0.0005454909819639279,0.0005472945891783567,0.0005490981963927855,0.0005509018036072144,0.0005527054108216433,0.0005545090180360721,0.000556312625250501,0.0005581162324649299,0.0005599198396793587,0.0005617234468937876,0.0005635270541082165,0.0005653306613226453,0.0005671342685370742,0.000568937875751503,0.0005707414829659318,0.0005725450901803607,0.0005743486973947896,0.0005761523046092184,0.0005779559118236473,0.0005797595190380762,0.000581563126252505,0.0005833667334669339,0.0005851703406813628,0.0005869739478957916,0.0005887775551102204,0.0005905811623246493,0.0005923847695390781,0.000594188376753507,0.0005959919839679359,0.0005977955911823647,0.0005995991983967936,0.0006014028056112225,0.0006032064128256513,0.0006050100200400802,0.0006068136272545091,0.0006086172344689379,0.0006104208416833667,0.0006122244488977956,0.0006140280561122244,0.0006158316633266533,0.0006176352705410822,0.000619438877755511,0.0006212424849699399,0.0006230460921843687,0.0006248496993987976,0.0006266533066132265,0.0006284569138276553,0.0006302605210420842,0.000632064128256513,0.0006338677354709418,0.0006356713426853707,0.0006374749498997996,0.0006392785571142284,0.0006410821643286573,0.0006428857715430862,0.000644689378757515,0.0006464929859719439,0.0006482965931863728,0.0006501002004008016,0.0006519038076152305,0.0006537074148296593,0.0006555110220440881,0.000657314629258517,0.0006591182364729459,0.0006609218436873747,0.0006627254509018036,0.0006645290581162325,0.0006663326653306613,0.0006681362725450902,0.0006699398797595191,0.0006717434869739479,0.0006735470941883768,0.0006753507014028056,0.0006771543086172344,0.0006789579158316633,0.0006807615230460922,0.000682565130260521,0.0006843687374749499,0.0006861723446893788,0.0006879759519038076,0.0006897795591182365,0.0006915831663326654,0.0006933867735470942,0.000695190380761523,0.0006969939879759519,0.0006987975951903807,0.0007006012024048096,0.0007024048096192385,0.0007042084168336673,0.0007060120240480962,0.0007078156312625251,0.0007096192384769539,0.0007114228456913828,0.0007132264529058117,0.0007150300601202405,0.0007168336673346693,0.0007186372745490982,0.000720440881763527,0.0007222444889779559,0.0007240480961923848,0.0007258517034068136,0.0007276553106212425,0.0007294589178356714,0.0007312625250501002,0.0007330661322645291,0.000734869739478958,0.0007366733466933868,0.0007384769539078156,0.0007402805611222445,0.0007420841683366733,0.0007438877755511022,0.000745691382765531,0.0007474949899799599,0.0007492985971943888,0.0007511022044088176,0.0007529058116232465,0.0007547094188376754,0.0007565130260521042,0.000758316633266533,0.000760120240480962,0.0007619238476953907,0.0007637274549098196,0.0007655310621242485,0.0007673346693386773,0.0007691382765531062,0.0007709418837675351,0.0007727454909819639,0.0007745490981963928,0.0007763527054108217,0.0007781563126252505,0.0007799599198396794,0.0007817635270541082,0.000783567134268537,0.0007853707414829659,0.0007871743486973948,0.0007889779559118236,0.0007907815631262525,0.0007925851703406814,0.0007943887775551102,0.0007961923847695391,0.000797995991983968,0.0007997995991983968,0.0008016032064128256,0.0008034068136272545,0.0008052104208416833,0.0008070140280561122,0.0008088176352705411,0.0008106212424849699,0.0008124248496993988,0.0008142284569138277,0.0008160320641282565,0.0008178356713426854,0.0008196392785571143,0.0008214428857715431,0.000823246492985972,0.0008250501002004008,0.0008268537074148296,0.0008286573146292585,0.0008304609218436874,0.0008322645290581162,0.0008340681362725451,0.000835871743486974,0.0008376753507014028,0.0008394789579158317,0.0008412825651302606,0.0008430861723446894,0.0008448897795591182,0.0008466933867735471,0.0008484969939879759,0.0008503006012024048,0.0008521042084168337,0.0008539078156312625,0.0008557114228456914,0.0008575150300601203,0.0008593186372745491,0.000861122244488978,0.0008629258517034069,0.0008647294589178357,0.0008665330661322645,0.0008683366733466933,0.0008701402805611222,0.0008719438877755511,0.0008737474949899799,0.0008755511022044088,0.0008773547094188377,0.0008791583166332665,0.0008809619238476954,0.0008827655310621243,0.0008845691382765531,0.000886372745490982,0.0008881763527054108,0.0008899799599198396,0.0008917835671342685,0.0008935871743486974,0.0008953907815631262,0.0008971943887775551,0.000898997995991984,0.0009008016032064128,0.0009026052104208417,0.0009044088176352706,0.0009062124248496994,0.0009080160320641283,0.0009098196392785571,0.0009116232464929859,0.0009134268537074148,0.0009152304609218437,0.0009170340681362725,0.0009188376753507014,0.0009206412825651303,0.0009224448897795591,0.000924248496993988,0.0009260521042084169,0.0009278557114228457,0.0009296593186372745,0.0009314629258517034,0.0009332665330661322,0.0009350701402805611,0.00093687374749499,0.0009386773547094188,0.0009404809619238477,0.0009422845691382766,0.0009440881763527054,0.0009458917835671343,0.0009476953907815632,0.000949498997995992,0.0009513026052104208,0.0009531062124248497,0.0009549098196392785,0.0009567134268537074,0.0009585170340681363,0.0009603206412825651,0.000962124248496994,0.0009639278557114229,0.0009657314629258517,0.0009675350701402806,0.0009693386773547095,0.0009711422845691383,0.0009729458917835671,0.000974749498997996,0.0009765531062124248,0.0009783567134268537,0.0009801603206412825,0.0009819639278557115,0.0009837675350701403,0.000985571142284569,0.000987374749498998,0.0009891783567134269,0.0009909819639278557,0.0009927855711422847,0.0009945891783567134,0.0009963927855711422,0.0009981963927855712,0.001]}
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/runner.jl
new file mode 100644
index 000000000000..92b17e8ac573
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/fixtures/julia/runner.jl
@@ -0,0 +1,105 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import JSON
+
+"""
+ gen( x, name )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `x`: domain
+* `name::AbstractString`: output filename
+
+# Examples
+
+``` julia
+julia> x = range( -1000, stop = 1000, length = 2001 );
+julia> gen( x, \"data.json\" );
+```
+"""
+function gen( x, name )
+ y = zeros( length(x) );
+ for i in eachindex(x)
+ # Mimic implicit type promotion in JavaScript:
+ y[i] = convert( Float64, convert( Float16, x[i] ) );
+ end
+
+ # Store data to be written to file as a collection:
+ data = Dict([
+ ("x", x),
+ ("expected", y)
+ ]);
+
+ # Based on the script directory, create an output filepath:
+ filepath = joinpath( dir, name );
+
+ # Write the data to the output filepath as JSON:
+ outfile = open( filepath, "w" );
+ write( outfile, JSON.json(data) );
+ write( outfile, "\n" );
+ close( outfile );
+end
+
+# Get the filename:
+file = @__FILE__;
+
+# Extract the directory in which this file resides:
+dir = dirname( file );
+
+# Positive normal values:
+x = range( 0, stop = 1001, length = 500 );
+gen( x, "positive_normal.json" );
+
+# Negative normal values:
+x = range( -1001, stop = 0, length = 500 );
+gen( x, "negative_normal.json" );
+
+# Positive small values:
+x = range( 0, stop = 1, length = 500 );
+gen( x, "positive_small.json" );
+
+# Negative small values:
+x = range( -1, stop = 0, length = 500 );
+gen( x, "negative_small.json" );
+
+# Positive tiny values:
+x = range( 1e-4, stop = 1e-3, length = 500 );
+gen( x, "positive_tiny.json" );
+
+# Negative tiny values:
+x = range( -1e-4, stop = -1e-3, length = 500 );
+gen( x, "negative_tiny.json" );
+
+# Positive subnormal values:
+x = range( 1e-7, stop = 6e-5, length = 500 );
+gen( x, "positive_subnormal.json" );
+
+# Negative subnormal values:
+x = range( -1e-7, stop = -6e-5, length = 500 );
+gen( x, "negative_subnormal.json" );
+
+# Large positive values:
+x = range( 1e3, stop = 6.5e4, length = 500 );
+gen( x, "positive_large.json" );
+
+# Large negative values:
+x = range( -1e3, stop = -6.5e4, length = 500 );
+gen( x, "negative_large.json" );
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/test.js b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/test.js
new file mode 100644
index 000000000000..5251650322c7
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/test.js
@@ -0,0 +1,260 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var proxyquire = require( 'proxyquire' );
+var NINF = require( '@stdlib/constants/float64/ninf' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var polyfill = require( './../lib/polyfill.js' );
+var float64ToFloat16 = require( './../lib' );
+
+
+// FIXTURES //
+
+var negativeLarge = require( './fixtures/julia/negative_large.json' );
+var negativeNormal = require( './fixtures/julia/negative_normal.json' );
+var negativeSmall = require( './fixtures/julia/negative_small.json' );
+var negativeSubnormal = require( './fixtures/julia/negative_subnormal.json' );
+var negativeTiny = require( './fixtures/julia/negative_tiny.json' );
+var positiveLarge = require( './fixtures/julia/positive_large.json' );
+var positiveNormal = require( './fixtures/julia/positive_normal.json' );
+var positiveSmall = require( './fixtures/julia/positive_small.json' );
+var positiveSubnormal = require( './fixtures/julia/positive_subnormal.json' );
+var positiveTiny = require( './fixtures/julia/positive_tiny.json' );
+
+
+// NOTES //
+
+/*
+* => In many comparisons, we rely on implicit promotion of half-precision floating-point numbers to double-precision equivalents; e.g., +-infinity, NaN. This stems from comparison operators defaulting to float64 operands.
+*/
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof float64ToFloat16, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'if an environment supports `Math.f16round` (ES2015+), the main export is the built-in method', function test( t ) {
+ var float64ToFloat16 = proxyquire( './../lib', {
+ './main.js': foo
+ });
+ t.strictEqual( float64ToFloat16, foo, 'returns expected value' );
+ t.end();
+
+ function foo() {
+ // No-op...
+ }
+});
+
+tape( 'if an environment does not support `Math.f16round` (non-ES2015+), the main export is a polyfill', function test( t ) {
+ var float64ToFloat16 = proxyquire( './../lib', {
+ './main.js': false
+ });
+ t.strictEqual( float64ToFloat16, polyfill, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `0`, the function returns `0`', function test( t ) {
+ var v = float64ToFloat16( 0.0 );
+ t.strictEqual( v, 0.0, 'equals 0' );
+ t.end();
+});
+
+tape( 'if provided `-0`, the function returns `-0`', function test( t ) {
+ var v = float64ToFloat16( -0.0 );
+ t.strictEqual( isNegativeZero( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `+infinity`, the function returns `+infinity`', function test( t ) {
+ var v = float64ToFloat16( PINF );
+ t.strictEqual( v, PINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `-infinity`, the function returns `-infinity`', function test( t ) {
+ var v = float64ToFloat16( NINF );
+ t.strictEqual( v, NINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `NaN`, the function returns `NaN`', function test( t ) {
+ var v = float64ToFloat16( NaN );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+large values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveLarge.x;
+ expected = positiveLarge.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+normal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveNormal.x;
+ expected = positiveNormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+small values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveSmall.x;
+ expected = positiveSmall.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+tiny values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveTiny.x;
+ expected = positiveTiny.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+subnormal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveSubnormal.x;
+ expected = positiveSubnormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-large values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeLarge.x;
+ expected = negativeLarge.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-normal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeNormal.x;
+ expected = negativeNormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-small values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeSmall.x;
+ expected = negativeSmall.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-tiny values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeTiny.x;
+ expected = negativeTiny.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-subnormal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeSubnormal.x;
+ expected = negativeSubnormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/number/float64/base/to-float16/test/test.polyfill.js b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/test.polyfill.js
new file mode 100644
index 000000000000..d85855dda7f1
--- /dev/null
+++ b/lib/node_modules/@stdlib/number/float64/base/to-float16/test/test.polyfill.js
@@ -0,0 +1,238 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var NINF = require( '@stdlib/constants/float64/ninf' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var float64ToFloat16 = require( './../lib/polyfill.js' );
+
+
+// FIXTURES //
+
+var negativeLarge = require( './fixtures/julia/negative_large.json' );
+var negativeNormal = require( './fixtures/julia/negative_normal.json' );
+var negativeSmall = require( './fixtures/julia/negative_small.json' );
+var negativeSubnormal = require( './fixtures/julia/negative_subnormal.json' );
+var negativeTiny = require( './fixtures/julia/negative_tiny.json' );
+var positiveLarge = require( './fixtures/julia/positive_large.json' );
+var positiveNormal = require( './fixtures/julia/positive_normal.json' );
+var positiveSmall = require( './fixtures/julia/positive_small.json' );
+var positiveSubnormal = require( './fixtures/julia/positive_subnormal.json' );
+var positiveTiny = require( './fixtures/julia/positive_tiny.json' );
+
+
+// NOTES //
+
+/*
+* => In many comparisons, we rely on implicit promotion of half-precision floating-point numbers to double-precision equivalents; e.g., +-infinity, NaN. This stems from comparison operators defaulting to float64 operands.
+*/
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof float64ToFloat16, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'if provided `0`, the function returns `0`', function test( t ) {
+ var v = float64ToFloat16( 0.0 );
+ t.strictEqual( v, 0.0, 'equals 0' );
+ t.end();
+});
+
+tape( 'if provided `-0`, the function returns `-0`', function test( t ) {
+ var v = float64ToFloat16( -0.0 );
+ t.strictEqual( isNegativeZero( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `+infinity`, the function returns `+infinity`', function test( t ) {
+ var v = float64ToFloat16( PINF );
+ t.strictEqual( v, PINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `-infinity`, the function returns `-infinity`', function test( t ) {
+ var v = float64ToFloat16( NINF );
+ t.strictEqual( v, NINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `NaN`, the function returns `NaN`', function test( t ) {
+ var v = float64ToFloat16( NaN );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+large values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveLarge.x;
+ expected = positiveLarge.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+normal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveNormal.x;
+ expected = positiveNormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+small values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveSmall.x;
+ expected = positiveSmall.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+tiny values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveTiny.x;
+ expected = positiveTiny.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (+subnormal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = positiveSubnormal.x;
+ expected = positiveSubnormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-large values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeLarge.x;
+ expected = negativeLarge.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-normal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeNormal.x;
+ expected = negativeNormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-small values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeSmall.x;
+ expected = negativeSmall.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-tiny values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeTiny.x;
+ expected = negativeTiny.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function returns the nearest half-precision floating-point number (-subnormal values)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = negativeSubnormal.x;
+ expected = negativeSubnormal.expected;
+ for ( i = 0; i < x.length; i++ ) {
+ y = float64ToFloat16( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});