diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/README.md b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/README.md
new file mode 100644
index 000000000000..30e55f18dc90
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/README.md
@@ -0,0 +1,223 @@
+
+
+# asinhf
+
+> Compute the [hyperbolic arcsine][inverse-hyperbolic] of a single-precision floating-point number.
+
+
+
+## Usage
+
+```javascript
+var asinhf = require( '@stdlib/math/base/special/fast/asinhf' );
+```
+
+#### asinhf( x )
+
+Computes the [hyperbolic arcsine][inverse-hyperbolic] of a single-precision floating-point `number` (in radians).
+
+```javascript
+var v = asinhf( 0.0 );
+// returns 0.0
+
+v = asinhf( -0.0 );
+// returns -0.0
+
+v = asinhf( 2.0 );
+// returns ~1.444
+
+v = asinhf( -2.0 );
+// returns ~-1.444
+
+v = asinhf( NaN );
+// returns NaN
+
+v = asinhf( -Infinity );
+// returns -Infinity
+
+v = asinhf( Infinity );
+// returns Infinity
+```
+
+
+
+
+
+
+
+## Notes
+
+- For large `x`, the function will overflow.
+
+ ```javascript
+ var v = asinhf( 1.0e200 );
+ // returns Infinity
+ // (expected 461.2101657793691)
+ ```
+
+- For small `x`, the function will underflow.
+
+ ```javascript
+ var v = asinhf( 1.0e-50 );
+ // returns 0.0
+ // (expected 1.0e-50)
+ ```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var asinhf = require( '@stdlib/math/base/special/fast/asinhf' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 103, -5.0, 5.0, opts );
+
+logEachMap( 'asinhf(%0.4f) = %0.4f', x, asinhf );
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/fast/asinhf.h"
+```
+
+#### stdlib_base_fast_asinhf( x )
+
+Computes the [hyperbolic arcsine][inverse-hyperbolic] of a single-precision floating-point number.
+
+```c
+float out = stdlib_base_fast_asinhf( 0.0f );
+// returns 0.0
+
+out = stdlib_base_fast_asinhf( 2.0f );
+// returns ~1.444
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] float` input value.
+
+```c
+float stdlib_base_fast_asinhf( const float x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/fast/asinhf.h"
+#include
+#include
+
+int main( void ) {
+ float x;
+ float v;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x = ( (float)rand() / (float)RAND_MAX ) * 100.0f;
+ v = stdlib_base_fast_asinhf( x );
+ printf( "asinhf(%f) = %f\n", x, v );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[inverse-hyperbolic]: https://en.wikipedia.org/wiki/Inverse_hyperbolic_function
+
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/benchmark.js
new file mode 100644
index 000000000000..c48ee446e10f
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/benchmark.js
@@ -0,0 +1,55 @@
+/**
+* @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 uniform = require( '@stdlib/random/array/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var pkg = require( './../package.json' ).name;
+var asinhf = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -100.0, 100.0, {
+ 'dtype': 'float32'
+ });
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = asinhf( x[ i%x.length ] );
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ } else {
+ b.pass( 'benchmark finished' );
+ }
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..9960be33bb9d
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/benchmark.native.js
@@ -0,0 +1,64 @@
+/**
+* @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 resolve = require( 'path' ).resolve;
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/array/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+var pkg = require( './../package.json' ).name;
+
+
+// VARIABLES //
+
+var asinhf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( asinhf instanceof Error )
+};
+
+
+// MAIN //
+
+bench( pkg+'::native', opts, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -100.0, 100.0, {
+ 'dtype': 'float32'
+ });
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = asinhf( x[ i%x.length ] );
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ } else {
+ b.pass( 'benchmark finished' );
+ }
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/c/native/Makefile
new file mode 100644
index 000000000000..a4bd7b38fd74
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/c/native/Makefile
@@ -0,0 +1,146 @@
+#/
+# @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.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`):
+INCLUDE ?=
+
+# List of source files:
+SOURCE_FILES ?=
+
+# List of libraries (e.g., `-lopenblas -lpthread`):
+LIBRARIES ?=
+
+# List of library paths (e.g., `-L /foo/bar -L /beep/boop`):
+LIBPATH ?=
+
+# List of C targets:
+c_targets := benchmark.out
+
+
+# RULES #
+
+#/
+# Compiles source files.
+#
+# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`)
+# @param {string} [CFLAGS] - C compiler options
+# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`)
+# @param {string} [SOURCE_FILES] - list of source files
+# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`)
+# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`)
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler (e.g., `gcc`)
+# @param {string} CFLAGS - C compiler options
+# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`)
+# @param {string} SOURCE_FILES - list of source files
+# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`)
+# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`)
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
+
+#/
+# Runs compiled benchmarks.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/c/native/benchmark.c
new file mode 100644
index 000000000000..4a9c2f2317de
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/benchmark/c/native/benchmark.c
@@ -0,0 +1,138 @@
+/**
+* @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.
+*/
+
+#include "stdlib/math/base/special/fast/asinhf.h"
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "asinhf"
+#define ITERATIONS 1000000
+#define REPEATS 3
+
+/**
+* Prints the TAP version.
+*/
+static void print_version( void ) {
+ printf( "TAP version 13\n" );
+}
+
+/**
+* Prints the TAP summary.
+*
+* @param total total number of tests
+* @param passing total number of passing tests
+*/
+static void print_summary( int total, int passing ) {
+ printf( "#\n" );
+ printf( "1..%d\n", total ); // TAP plan
+ printf( "# total %d\n", total );
+ printf( "# pass %d\n", passing );
+ printf( "#\n" );
+ printf( "# ok\n" );
+}
+
+/**
+* Prints benchmarks results.
+*
+* @param elapsed elapsed time in seconds
+*/
+static void print_results( double elapsed ) {
+ double rate = (double)ITERATIONS / elapsed;
+ printf( " ---\n" );
+ printf( " iterations: %d\n", ITERATIONS );
+ printf( " elapsed: %0.9f\n", elapsed );
+ printf( " rate: %0.9f\n", rate );
+ printf( " ...\n" );
+}
+
+/**
+* Returns a clock time.
+*
+* @return clock time
+*/
+static double tic( void ) {
+ struct timeval now;
+ gettimeofday( &now, NULL );
+ return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
+}
+
+/**
+* Generates a random number on the interval [min,max).
+*
+* @param min minimum value (inclusive)
+* @param max maximum value (exclusive)
+* @return random number
+*/
+static float random_uniform( const float min, const float max ) {
+ float v = (float)rand() / ( (float)RAND_MAX + 1.0f );
+ return min + ( v*(max-min) );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ float x[ 100 ];
+ double elapsed;
+ double t;
+ float y;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x[ i ] = random_uniform( 0.0f, 100.0f );
+ }
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ y = stdlib_base_fast_asinhf( x[ i%100 ] );
+ if ( y != y ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( y != y ) {
+ printf( "should not return NaN\n" );
+ }
+ return elapsed;
+}
+
+/**
+* Main execution sequence.
+*/
+int main( void ) {
+ double elapsed;
+ int i;
+
+ // Use the current time to seed the random number generator:
+ srand( time( NULL ) );
+
+ print_version();
+ for ( i = 0; i < REPEATS; i++ ) {
+ printf( "# c::native::%s\n", NAME );
+ elapsed = benchmark();
+ print_results( elapsed );
+ printf( "ok %d benchmark finished\n", i+1 );
+ }
+ print_summary( REPEATS, REPEATS );
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/binding.gyp
new file mode 100644
index 000000000000..68a1ca11d160
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/binding.gyp
@@ -0,0 +1,170 @@
+# @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.
+
+# A `.gyp` file for building a Node.js native add-on.
+#
+# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md
+# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md
+{
+ # List of files to include in this file:
+ 'includes': [
+ './include.gypi',
+ ],
+
+ # Define variables to be used throughout the configuration for all targets:
+ 'variables': {
+ # Target name should match the add-on export name:
+ 'addon_target_name%': 'addon',
+
+ # Set variables based on the host OS:
+ 'conditions': [
+ [
+ 'OS=="win"',
+ {
+ # Define the object file suffix:
+ 'obj': 'obj',
+ },
+ {
+ # Define the object file suffix:
+ 'obj': 'o',
+ }
+ ], # end condition (OS=="win")
+ ], # end conditions
+ }, # end variables
+
+ # Define compile targets:
+ 'targets': [
+
+ # Target to generate an add-on:
+ {
+ # The target name should match the add-on export name:
+ 'target_name': '<(addon_target_name)',
+
+ # Define dependencies:
+ 'dependencies': [],
+
+ # Define directories which contain relevant include headers:
+ 'include_dirs': [
+ # Local include directory:
+ '<@(include_dirs)',
+ ],
+
+ # List of source files:
+ 'sources': [
+ '<@(src_files)',
+ ],
+
+ # Settings which should be applied when a target's object files are used as linker input:
+ 'link_settings': {
+ # Define libraries:
+ 'libraries': [
+ '<@(libraries)',
+ ],
+
+ # Define library directories:
+ 'library_dirs': [
+ '<@(library_dirs)',
+ ],
+ },
+
+ # C/C++ compiler flags:
+ 'cflags': [
+ # Enable commonly used warning options:
+ '-Wall',
+
+ # Aggressive optimization:
+ '-O3',
+ ],
+
+ # C specific compiler flags:
+ 'cflags_c': [
+ # Specify the C standard to which a program is expected to conform:
+ '-std=c99',
+ ],
+
+ # C++ specific compiler flags:
+ 'cflags_cpp': [
+ # Specify the C++ standard to which a program is expected to conform:
+ '-std=c++11',
+ ],
+
+ # Linker flags:
+ 'ldflags': [],
+
+ # Apply conditions based on the host OS:
+ 'conditions': [
+ [
+ 'OS=="mac"',
+ {
+ # Linker flags:
+ 'ldflags': [
+ '-undefined dynamic_lookup',
+ '-Wl,-no-pie',
+ '-Wl,-search_paths_first',
+ ],
+ },
+ ], # end condition (OS=="mac")
+ [
+ 'OS!="win"',
+ {
+ # C/C++ flags:
+ 'cflags': [
+ # Generate platform-independent code:
+ '-fPIC',
+ ],
+ },
+ ], # end condition (OS!="win")
+ ], # end conditions
+ }, # end target <(addon_target_name)
+
+ # Target to copy a generated add-on to a standard location:
+ {
+ 'target_name': 'copy_addon',
+
+ # Declare that the output of this target is not linked:
+ 'type': 'none',
+
+ # Define dependencies:
+ 'dependencies': [
+ # Require that the add-on be generated before building this target:
+ '<(addon_target_name)',
+ ],
+
+ # Define a list of actions:
+ 'actions': [
+ {
+ 'action_name': 'copy_addon',
+ 'message': 'Copying addon...',
+
+ # Explicitly list the inputs in the command-line invocation below:
+ 'inputs': [],
+
+ # Declare the expected outputs:
+ 'outputs': [
+ '<(addon_output_dir)/<(addon_target_name).node',
+ ],
+
+ # Define the command-line invocation:
+ 'action': [
+ 'cp',
+ '<(PRODUCT_DIR)/<(addon_target_name).node',
+ '<(addon_output_dir)/<(addon_target_name).node',
+ ],
+ },
+ ], # end actions
+ }, # end target copy_addon
+ ], # end targets
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/repl.txt
new file mode 100644
index 000000000000..0c1911b8d011
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/repl.txt
@@ -0,0 +1,37 @@
+
+{{alias}}( x )
+ Computes the hyperbolic arcsine of a single-precision
+ floating-point number.
+
+ Parameters
+ ----------
+ x: number
+ Input value.
+
+ Returns
+ -------
+ out: number
+ Hyperbolic arcsine (in radians).
+
+ Examples
+ --------
+ > var v = {{alias}}( 0.0 )
+ 0.0
+ > v = {{alias}}( 2.0 )
+ ~1.444
+ > v = {{alias}}( -2.0 )
+ ~-1.444
+ > v = {{alias}}( NaN )
+ NaN
+
+ // The function overflows for large `x`:
+ > v = {{alias}}( 1.0e200 )
+ Infinity
+
+ // The function underflows for small `x`:
+ > v = {{alias}}( 1.0e-50 )
+ 0.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/types/index.d.ts
new file mode 100644
index 000000000000..3be8f5f70cfb
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/types/index.d.ts
@@ -0,0 +1,48 @@
+/*
+* @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
+
+/**
+* Computes the hyperbolic arcsine of a single-precision floating-point number.
+*
+* @param x - input value
+* @returns hyperbolic arcsine (in radians)
+*
+* @example
+* var v = asinhf( 0.0 );
+* // returns 0.0
+*
+* @example
+* var v = asinhf( 2.0 );
+* // returns ~1.444
+*
+* @example
+* var v = asinhf( -2.0 );
+* // returns ~-1.444
+*
+* @example
+* var v = asinhf( NaN );
+* // returns NaN
+*/
+declare function asinhf( x: number ): number;
+
+
+// EXPORTS //
+
+export = asinhf;
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/types/test.ts
new file mode 100644
index 000000000000..3ceca19a5dde
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/docs/types/test.ts
@@ -0,0 +1,44 @@
+/*
+* @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 asinhf = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ asinhf( 8 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ asinhf( true ); // $ExpectError
+ asinhf( false ); // $ExpectError
+ asinhf( null ); // $ExpectError
+ asinhf( undefined ); // $ExpectError
+ asinhf( '5' ); // $ExpectError
+ asinhf( [] ); // $ExpectError
+ asinhf( {} ); // $ExpectError
+ asinhf( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ asinhf(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/c/Makefile
new file mode 100644
index 000000000000..25ced822f96a
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/c/Makefile
@@ -0,0 +1,146 @@
+#/
+# @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.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`):
+INCLUDE ?=
+
+# List of source files:
+SOURCE_FILES ?=
+
+# List of libraries (e.g., `-lopenblas -lpthread`):
+LIBRARIES ?=
+
+# List of library paths (e.g., `-L /foo/bar -L /beep/boop`):
+LIBPATH ?=
+
+# List of C targets:
+c_targets := example.out
+
+
+# RULES #
+
+#/
+# Compiles source files.
+#
+# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`)
+# @param {string} [CFLAGS] - C compiler options
+# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`)
+# @param {string} [SOURCE_FILES] - list of source files
+# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`)
+# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`)
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler (e.g., `gcc`)
+# @param {string} CFLAGS - C compiler options
+# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`)
+# @param {string} SOURCE_FILES - list of source files
+# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`)
+# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`)
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
+
+#/
+# Runs compiled examples.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/c/example.c
new file mode 100644
index 000000000000..90b176ae3e75
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/c/example.c
@@ -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.
+*/
+
+#include "stdlib/math/base/special/fast/asinhf.h"
+#include
+#include
+
+int main( void ) {
+ float x;
+ float v;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x = ( (float)rand() / (float)RAND_MAX ) * 100.0f;
+ v = stdlib_base_fast_asinhf( x );
+ printf( "asinhf(%f) = %f\n", x, v );
+ }
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/index.js
new file mode 100644
index 000000000000..86cdb2626527
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/examples/index.js
@@ -0,0 +1,30 @@
+/**
+* @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 uniform = require( '@stdlib/random/array/uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var asinhf = require( './../lib' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 103, -5.0, 5.0, opts );
+
+logEachMap( 'asinhf(%0.4f) = %0.4f', x, asinhf );
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/include.gypi b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/include.gypi
new file mode 100644
index 000000000000..ecfaf82a3279
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/include.gypi
@@ -0,0 +1,53 @@
+# @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.
+
+# A GYP include file for building a Node.js native add-on.
+#
+# Main documentation:
+#
+# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md
+# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md
+{
+ # Define variables to be used throughout the configuration for all targets:
+ 'variables': {
+ # Source directory:
+ 'src_dir': './src',
+
+ # Include directories:
+ 'include_dirs': [
+ ' f32( 0.0 ) ) {
+ return lnf( f32( x + sqrtf( f32( x*x ) + f32( 1.0 ) ) ) );
+ }
+ // Better precision for large negative `x`:
+ return -lnf( f32( -x + sqrtf( f32( x*x ) + f32( 1.0 ) ) ) );
+}
+
+
+// EXPORTS //
+
+module.exports = asinhf;
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/lib/native.js b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/lib/native.js
new file mode 100644
index 000000000000..50625c0b46e1
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/lib/native.js
@@ -0,0 +1,58 @@
+/**
+* @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 addon = require( './../src/addon.node' );
+
+
+// MAIN //
+
+/**
+* Computes the hyperbolic arcsine of a single-precision floating-point number.
+*
+* @private
+* @param {number} x - input value
+* @returns {number} hyperbolic arcsine
+*
+* @example
+* var v = asinhf( 0.0 );
+* // returns 0.0
+*
+* @example
+* var v = asinhf( 2.0 );
+* // returns ~1.444
+*
+* @example
+* var v = asinhf( -2.0 );
+* // returns ~-1.444
+*
+* @example
+* var v = asinhf( NaN );
+* // returns NaN
+*/
+function asinhf( x ) {
+ return addon( x );
+}
+
+
+// EXPORTS //
+
+module.exports = asinhf;
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/manifest.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/manifest.json
new file mode 100644
index 000000000000..596b30db3bf2
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/manifest.json
@@ -0,0 +1,83 @@
+{
+ "options": {
+ "task": "build"
+ },
+ "fields": [
+ {
+ "field": "src",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "include",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "libraries",
+ "resolve": false,
+ "relative": false
+ },
+ {
+ "field": "libpath",
+ "resolve": true,
+ "relative": false
+ }
+ ],
+ "confs": [
+ {
+ "task": "build",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/math/base/napi/unary",
+ "@stdlib/math/base/assert/is-nanf",
+ "@stdlib/math/base/special/sqrtf",
+ "@stdlib/math/base/special/lnf",
+ "@stdlib/math/base/assert/is-infinitef"
+ ]
+ },
+ {
+ "task": "benchmark",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/math/base/assert/is-nan",
+ "@stdlib/math/base/assert/is-nanf",
+ "@stdlib/math/base/special/sqrtf",
+ "@stdlib/math/base/special/lnf",
+ "@stdlib/math/base/assert/is-infinitef"
+ ]
+ },
+ {
+ "task": "examples",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/math/base/assert/is-nan",
+ "@stdlib/math/base/assert/is-nanf",
+ "@stdlib/math/base/special/sqrtf",
+ "@stdlib/math/base/special/lnf",
+ "@stdlib/math/base/assert/is-infinitef"
+ ]
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/package.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/package.json
new file mode 100644
index 000000000000..e7b5c2236282
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/package.json
@@ -0,0 +1,74 @@
+{
+ "name": "@stdlib/math/base/special/fast/asinhf",
+ "version": "0.0.0",
+ "description": "Compute the hyperbolic arcsine of a single-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",
+ "gypfile": true,
+ "directories": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "include": "./include",
+ "lib": "./lib",
+ "src": "./src",
+ "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",
+ "stdfastmath",
+ "mathematics",
+ "math",
+ "fastmath",
+ "fast",
+ "math.asinh",
+ "asinh",
+ "sine",
+ "arcsine",
+ "hyperbolic",
+ "inverse",
+ "trig",
+ "trigonometry",
+ "radians",
+ "angle",
+ "polyfill",
+ "ponyfill"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/Makefile
new file mode 100644
index 000000000000..7733b6180cb4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/Makefile
@@ -0,0 +1,70 @@
+#/
+# @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.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+
+# RULES #
+
+#/
+# Removes generated files for building an add-on.
+#
+# @example
+# make clean-addon
+#/
+clean-addon:
+ $(QUIET) -rm -f *.o *.node
+
+.PHONY: clean-addon
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean: clean-addon
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/addon.c
new file mode 100644
index 000000000000..f04fba9129bc
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/addon.c
@@ -0,0 +1,22 @@
+/**
+* @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.
+*/
+
+#include "stdlib/math/base/special/fast/asinhf.h"
+#include "stdlib/math/base/napi/unary.h"
+
+STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_fast_asinhf )
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/main.c b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/main.c
new file mode 100644
index 000000000000..0eb90faa40c1
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/src/main.c
@@ -0,0 +1,44 @@
+/**
+* @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.
+*/
+
+#include "stdlib/math/base/special/fast/asinhf.h"
+#include "stdlib/math/base/assert/is_nanf.h"
+#include "stdlib/math/base/assert/is_infinitef.h"
+#include "stdlib/math/base/special/lnf.h"
+#include "stdlib/math/base/special/sqrtf.h"
+#include
+
+/**
+* Computes the hyperbolic arcsine of a single-precision floating-point number.
+*
+* @param x input value
+* @return hyperbolic arcsine (in radians)
+*
+* @example
+* float v = stdlib_base_fast_asinhf( 0.0f );
+* // returns 0.0
+*/
+float stdlib_base_fast_asinhf( const float x ) {
+ if ( x == 0.0f || stdlib_base_is_nanf( x ) || stdlib_base_is_infinitef( x ) ) {
+ return x;
+ }
+ if ( x > 0.0f ) {
+ return stdlib_base_lnf( x + ( stdlib_base_sqrtf( ( x*x ) + 1.0f ) ) );
+ }
+ return -stdlib_base_lnf( -x + ( stdlib_base_sqrtf( ( x*x ) + 1.0f ) ) );
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/large_negative.json
new file mode 100644
index 000000000000..432b084d1e59
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/large_negative.json
@@ -0,0 +1 @@
+{"expected":[-1.8184465,-1.8340783,-1.8494813,-1.8646619,-1.8796259,-1.8943791,-1.9089273,-1.9232757,-1.9374295,-1.9513937,-1.965173,-1.9787723,-1.9921957,-2.0054479,-2.0185328,-2.0314543,-2.0442169,-2.0568235,-2.0692782,-2.0815845,-2.0937457,-2.1057653,-2.117646,-2.1293912,-2.1410038,-2.1524868,-2.163843,-2.1750748,-2.186185,-2.197176,-2.2080505,-2.2188108,-2.2294593,-2.2399979,-2.2504292,-2.260755,-2.2709777,-2.281099,-2.291121,-2.3010454,-2.3108745,-2.3206096,-2.3302526,-2.3398054,-2.3492692,-2.358646,-2.367937,-2.3771443,-2.3862686,-2.395312,-2.404276,-2.4131613,-2.4219694,-2.4307022,-2.4393601,-2.447945,-2.456458,-2.4649003,-2.4732726,-2.4815767,-2.489813,-2.497983,-2.5060878,-2.5141284,-2.5221055,-2.5300202,-2.5378737,-2.5456667,-2.5534003,-2.561075,-2.5686922,-2.5762522,-2.5837564,-2.5912051,-2.5985994,-2.60594,-2.6132278,-2.6204636,-2.6276476,-2.6347811,-2.6418645,-2.6488986,-2.655884,-2.6628215,-2.6697116,-2.6765552,-2.6833525,-2.6901042,-2.6968112,-2.703474,-2.710093,-2.7166688,-2.7232022,-2.7296934,-2.736143,-2.7425518,-2.7489202,-2.7552485,-2.7615373,-2.767787,-2.7739985,-2.7801716,-2.7863073,-2.7924058,-2.7984679,-2.8044934,-2.8104832,-2.8164375,-2.8223567,-2.8282416,-2.8340921,-2.839909,-2.8456924,-2.8514426,-2.8571603,-2.862846,-2.8684993,-2.8741212,-2.8797119,-2.8852715,-2.8908007,-2.8962996,-2.9017687,-2.9072084,-2.9126186,-2.918,-2.9233527,-2.9286768,-2.9339733,-2.939242,-2.944483,-2.949697,-2.9548838,-2.9600444,-2.9651785,-2.9702864,-2.9753685,-2.9804251,-2.9854565,-2.9904628,-2.995444,-3.000401,-3.0053334,-3.010242,-3.0151265,-3.0199873,-3.0248249,-3.0296392,-3.0344305,-3.0391994,-3.0439456,-3.048669,-3.053371,-3.0580506,-3.0627089,-3.0673454,-3.0719607,-3.0765548,-3.081128,-3.0856805,-3.0902123,-3.094724,-3.0992155,-3.1036868,-3.1081383,-3.1125705,-3.116983,-3.121376,-3.12575,-3.130105,-3.1344411,-3.138759,-3.1430578,-3.1473386,-3.1516013,-3.1558459,-3.1600726,-3.1642814,-3.1684728,-3.1726468,-3.1768034,-3.1809428,-3.1850653,-3.1891708,-3.1932597,-3.197332,-3.201388,-3.2054274,-3.2094507,-3.2134578,-3.2174492,-3.2214246,-3.2253845,-3.2293286,-3.2332575,-3.2371707,-3.241069,-3.2449522,-3.2488203,-3.2526736,-3.2565122,-3.2603362,-3.2641456,-3.2679405,-3.2717211,-3.2754877,-3.2792401,-3.2829785,-3.2867029,-3.2904136,-3.2941108,-3.297794,-3.3014643,-3.305121,-3.3087642,-3.3123944,-3.3160112,-3.3196154,-3.3232064,-3.3267848,-3.3303502,-3.3339033,-3.3374436,-3.3409715,-3.3444872,-3.3479905,-3.3514814,-3.3549604,-3.3584275,-3.3618824,-3.3653257,-3.368757,-3.3721764,-3.3755844,-3.3789809,-3.382366,-3.3857396,-3.3891017,-3.3924527,-3.3957927,-3.3991215,-3.402439,-3.405746,-3.409042,-3.412327,-3.4156013,-3.418865,-3.4221182,-3.425361,-3.428593,-3.4318147,-3.4350262,-3.4382274,-3.4414184,-3.4445992,-3.4477699,-3.4509308,-3.4540815,-3.4572225,-3.4603536,-3.463475,-3.4665868,-3.469689,-3.4727814,-3.4758642,-3.4789379,-3.482002,-3.4850566,-3.4881022,-3.4911385,-3.4941654,-3.4971836,-3.5001924,-3.5031924,-3.5061831,-3.5091653,-3.5121386,-3.5151029,-3.5180585,-3.5210056,-3.523944,-3.5268736,-3.5297947,-3.5327072,-3.5356116,-3.5385075,-3.541395,-3.544274,-3.5471451,-3.5500076,-3.5528622,-3.5557086,-3.558547,-3.5613775,-3.5642,-3.5670142,-3.569821,-3.5726197,-3.5754106,-3.5781937,-3.580969,-3.583737,-3.586497,-3.5892498,-3.5919948,-3.5947323,-3.5974624,-3.6001852,-3.6029003,-3.6056082,-3.6083088,-3.6110022,-3.6136885,-3.6163673,-3.619039,-3.6217039,-3.6243613,-3.627012,-3.6296556,-3.6322923,-3.634922,-3.6375449,-3.6401608,-3.6427698,-3.6453724,-3.6479678,-3.6505568,-3.653139,-3.6557148,-3.6582837,-3.660846,-3.663402,-3.6659515,-3.6684942,-3.6710308,-3.6735609,-3.6760845,-3.6786017,-3.6811128,-3.6836174,-3.686116,-3.6886082,-3.6910942,-3.6935742,-3.696048,-3.6985157,-3.7009773,-3.7034328,-3.7058823,-3.7083259,-3.7107637,-3.7131953,-3.7156212,-3.7180412,-3.7204554,-3.7228637,-3.7252662,-3.727663,-3.7300541,-3.7324395,-3.7348192,-3.737193,-3.7395618,-3.7419245,-3.7442818,-3.7466335,-3.7489798,-3.7513206,-3.753656,-3.7559857,-3.75831,-3.7606292,-3.762943,-3.7652514,-3.7675545,-3.7698522,-3.7721448,-3.774432,-3.776714,-3.778991,-3.7812626,-3.7835293,-3.7857907,-3.788047,-3.7902982,-3.7925444,-3.7947857,-3.7970219,-3.799253,-3.8014793,-3.8037004,-3.8059168,-3.8081284,-3.810335,-3.8125367,-3.8147337,-3.8169258,-3.819113,-3.8212957,-3.8234735,-3.8256466,-3.8278148,-3.8299785,-3.8321376,-3.834292,-3.8364418,-3.8385868,-3.8407273,-3.8428633,-3.8449948,-3.8471217,-3.849244,-3.851362,-3.8534753,-3.8555844,-3.857689,-3.859789,-3.8618846,-3.863976,-3.8660629,-3.8681457,-3.870224,-3.872298,-3.8743677,-3.8764331,-3.8784943,-3.8805513,-3.882604,-3.8846526,-3.8866968,-3.8887372,-3.890773,-3.892805,-3.8948328,-3.8968565,-3.8988762,-3.9008918,-3.902903,-3.9049106,-3.906914,-3.9089134,-3.910909,-3.9129002,-3.914888,-3.9168715,-3.9188511,-3.920827,-3.9227986,-3.9247665,-3.9267306,-3.928691,-3.9306474,-3.9326,-3.9345489,-3.9364939,-3.938435,-3.9403727,-3.9423065,-3.9442365,-3.9461627,-3.9480853,-3.9500043,-3.9519196,-3.9538312,-3.955739,-3.9576433,-3.9595442,-3.961441,-3.9633346,-3.9652245,-3.9671109,-3.968994,-3.970873,-3.9727488,-3.974621,-3.9764898,-3.978355,-3.9802167,-3.9820752,-3.98393,-3.9857817,-3.9876297,-3.9894743,-3.9913156,-3.9931533,-3.9949877,-3.996819,-3.9986467,-4.000471,-4.002292,-4.0041103,-4.0059247,-4.0077357,-4.009544,-4.0113487,-4.01315,-4.0149484,-4.016743,-4.018535,-4.0203238,-4.022109,-4.0238914,-4.0256705],"x":[-3.0,-3.049800796812749,-3.099601593625498,-3.149402390438247,-3.199203187250996,-3.249003984063745,-3.298804780876494,-3.348605577689243,-3.398406374501992,-3.448207171314741,-3.49800796812749,-3.547808764940239,-3.597609561752988,-3.647410358565737,-3.697211155378486,-3.747011952191235,-3.7968127490039842,-3.846613545816733,-3.896414342629482,-3.946215139442231,-3.99601593625498,-4.0458167330677295,-4.095617529880478,-4.145418326693227,-4.195219123505976,-4.245019920318725,-4.294820717131474,-4.344621513944223,-4.394422310756972,-4.444223107569721,-4.49402390438247,-4.543824701195219,-4.5936254980079685,-4.643426294820717,-4.693227091633466,-4.743027888446215,-4.792828685258964,-4.842629482071713,-4.892430278884462,-4.942231075697211,-4.99203187250996,-5.04183266932271,-5.091633466135458,-5.1414342629482075,-5.191235059760956,-5.241035856573705,-5.290836653386454,-5.340637450199203,-5.390438247011952,-5.440239043824701,-5.49003984063745,-5.539840637450199,-5.589641434262949,-5.639442231075697,-5.6892430278884465,-5.739043824701195,-5.788844621513944,-5.838645418326693,-5.888446215139442,-5.938247011952191,-5.98804780876494,-6.03784860557769,-6.087649402390438,-6.137450199203188,-6.187250996015936,-6.2370517928286855,-6.286852589641434,-6.336653386454183,-6.386454183266932,-6.436254980079681,-6.48605577689243,-6.535856573705179,-6.585657370517929,-6.635458167330677,-6.685258964143427,-6.735059760956175,-6.7848605577689245,-6.834661354581673,-6.884462151394422,-6.934262948207171,-6.98406374501992,-7.03386454183267,-7.083665338645418,-7.133466135458168,-7.183266932270916,-7.233067729083666,-7.282868525896414,-7.3326693227091635,-7.382470119521912,-7.432270916334661,-7.48207171314741,-7.531872509960159,-7.581673306772909,-7.631474103585657,-7.681274900398407,-7.731075697211155,-7.780876494023905,-7.830677290836653,-7.8804780876494025,-7.930278884462151,-7.9800796812749,-8.02988047808765,-8.079681274900398,-8.129482071713147,-8.179282868525897,-8.229083665338646,-8.278884462151394,-8.328685258964143,-8.378486055776893,-8.428286852589641,-8.47808764940239,-8.52788844621514,-8.577689243027889,-8.627490039840637,-8.677290836653386,-8.727091633466136,-8.776892430278885,-8.826693227091633,-8.876494023904382,-8.926294820717132,-8.97609561752988,-9.025896414342629,-9.07569721115538,-9.125498007968128,-9.175298804780876,-9.225099601593625,-9.274900398406375,-9.324701195219124,-9.374501992031872,-9.42430278884462,-9.474103585657371,-9.52390438247012,-9.573705179282868,-9.623505976095618,-9.673306772908367,-9.723107569721115,-9.772908366533864,-9.822709163346614,-9.872509960159363,-9.922310756972111,-9.97211155378486,-10.02191235059761,-10.071713147410359,-10.121513944223107,-10.171314741035857,-10.221115537848606,-10.270916334661354,-10.320717131474103,-10.370517928286853,-10.420318725099602,-10.47011952191235,-10.5199203187251,-10.569721115537849,-10.619521912350598,-10.669322709163346,-10.719123505976096,-10.768924302788845,-10.818725099601593,-10.868525896414342,-10.918326693227092,-10.96812749003984,-11.01792828685259,-11.06772908366534,-11.117529880478088,-11.167330677290837,-11.217131474103585,-11.266932270916335,-11.316733067729084,-11.366533864541832,-11.41633466135458,-11.466135458167331,-11.51593625498008,-11.565737051792828,-11.615537848605578,-11.665338645418327,-11.715139442231076,-11.764940239043824,-11.814741035856574,-11.864541832669323,-11.914342629482071,-11.96414342629482,-12.01394422310757,-12.063745019920319,-12.113545816733067,-12.163346613545817,-12.213147410358566,-12.262948207171315,-12.312749003984063,-12.362549800796813,-12.412350597609562,-12.46215139442231,-12.51195219123506,-12.56175298804781,-12.611553784860558,-12.661354581673306,-12.711155378486056,-12.760956175298805,-12.810756972111554,-12.860557768924302,-12.910358565737052,-12.9601593625498,-13.00996015936255,-13.0597609561753,-13.109561752988048,-13.159362549800797,-13.209163346613545,-13.258964143426295,-13.308764940239044,-13.358565737051793,-13.408366533864541,-13.458167330677291,-13.50796812749004,-13.557768924302788,-13.607569721115539,-13.657370517928287,-13.707171314741036,-13.756972111553784,-13.806772908366534,-13.856573705179283,-13.906374501992032,-13.95617529880478,-14.00597609561753,-14.055776892430279,-14.105577689243027,-14.155378486055778,-14.205179282868526,-14.254980079681275,-14.304780876494023,-14.354581673306773,-14.404382470119522,-14.45418326693227,-14.50398406374502,-14.55378486055777,-14.603585657370518,-14.653386454183266,-14.703187250996017,-14.752988047808765,-14.802788844621514,-14.852589641434262,-14.902390438247012,-14.952191235059761,-15.00199203187251,-15.05179282868526,-15.101593625498008,-15.151394422310757,-15.201195219123505,-15.250996015936256,-15.300796812749004,-15.350597609561753,-15.400398406374501,-15.450199203187251,-15.5,-15.549800796812749,-15.599601593625499,-15.649402390438247,-15.699203187250996,-15.749003984063744,-15.798804780876495,-15.848605577689243,-15.898406374501992,-15.94820717131474,-15.99800796812749,-16.04780876494024,-16.09760956175299,-16.147410358565736,-16.197211155378486,-16.247011952191237,-16.296812749003983,-16.346613545816734,-16.39641434262948,-16.44621513944223,-16.49601593625498,-16.545816733067728,-16.595617529880478,-16.64541832669323,-16.695219123505975,-16.745019920318725,-16.794820717131476,-16.844621513944222,-16.894422310756973,-16.94422310756972,-16.99402390438247,-17.04382470119522,-17.093625498007967,-17.143426294820717,-17.193227091633467,-17.243027888446214,-17.292828685258964,-17.342629482071715,-17.39243027888446,-17.44223107569721,-17.49203187250996,-17.54183266932271,-17.59163346613546,-17.641434262948206,-17.691235059760956,-17.741035856573706,-17.790836653386453,-17.840637450199203,-17.890438247011954,-17.9402390438247,-17.99003984063745,-18.0398406374502,-18.089641434262948,-18.139442231075698,-18.189243027888445,-18.239043824701195,-18.288844621513945,-18.338645418326692,-18.388446215139442,-18.438247011952193,-18.48804780876494,-18.53784860557769,-18.58764940239044,-18.637450199203187,-18.687250996015937,-18.737051792828684,-18.786852589641434,-18.836653386454184,-18.88645418326693,-18.93625498007968,-18.98605577689243,-19.03585657370518,-19.08565737051793,-19.13545816733068,-19.185258964143426,-19.235059760956176,-19.284860557768923,-19.334661354581673,-19.384462151394423,-19.43426294820717,-19.48406374501992,-19.53386454183267,-19.583665338645417,-19.633466135458168,-19.683266932270918,-19.733067729083665,-19.782868525896415,-19.83266932270916,-19.882470119521912,-19.932270916334662,-19.98207171314741,-20.03187250996016,-20.08167330677291,-20.131474103585656,-20.181274900398407,-20.231075697211157,-20.280876494023904,-20.330677290836654,-20.3804780876494,-20.43027888446215,-20.4800796812749,-20.529880478087648,-20.5796812749004,-20.62948207171315,-20.679282868525895,-20.729083665338646,-20.778884462151396,-20.828685258964143,-20.878486055776893,-20.92828685258964,-20.97808764940239,-21.02788844621514,-21.077689243027887,-21.127490039840637,-21.177290836653388,-21.227091633466134,-21.276892430278885,-21.326693227091635,-21.37649402390438,-21.426294820717132,-21.47609561752988,-21.52589641434263,-21.57569721115538,-21.625498007968126,-21.675298804780876,-21.725099601593627,-21.774900398406373,-21.824701195219124,-21.874501992031874,-21.92430278884462,-21.97410358565737,-22.02390438247012,-22.073705179282868,-22.12350597609562,-22.173306772908365,-22.223107569721115,-22.272908366533866,-22.322709163346612,-22.372509960159363,-22.422310756972113,-22.47211155378486,-22.52191235059761,-22.57171314741036,-22.621513944223107,-22.671314741035857,-22.721115537848604,-22.770916334661354,-22.820717131474105,-22.87051792828685,-22.9203187250996,-22.970119521912352,-23.0199203187251,-23.06972111553785,-23.1195219123506,-23.169322709163346,-23.219123505976096,-23.268924302788843,-23.318725099601593,-23.368525896414344,-23.41832669322709,-23.46812749003984,-23.51792828685259,-23.567729083665338,-23.617529880478088,-23.66733067729084,-23.717131474103585,-23.766932270916335,-23.816733067729082,-23.866533864541832,-23.916334661354583,-23.96613545816733,-24.01593625498008,-24.06573705179283,-24.115537848605577,-24.165338645418327,-24.215139442231077,-24.264940239043824,-24.314741035856574,-24.36454183266932,-24.41434262948207,-24.46414342629482,-24.51394422310757,-24.56374501992032,-24.61354581673307,-24.663346613545816,-24.713147410358566,-24.762948207171316,-24.812749003984063,-24.862549800796813,-24.91235059760956,-24.96215139442231,-25.01195219123506,-25.061752988047807,-25.111553784860558,-25.161354581673308,-25.211155378486055,-25.260956175298805,-25.310756972111555,-25.360557768924302,-25.410358565737052,-25.4601593625498,-25.50996015936255,-25.5597609561753,-25.609561752988046,-25.659362549800797,-25.709163346613547,-25.758964143426294,-25.808764940239044,-25.858565737051794,-25.90836653386454,-25.95816733067729,-26.00796812749004,-26.05776892430279,-26.10756972111554,-26.157370517928285,-26.207171314741036,-26.256972111553786,-26.306772908366533,-26.356573705179283,-26.406374501992033,-26.45617529880478,-26.50597609561753,-26.55577689243028,-26.605577689243027,-26.655378486055778,-26.705179282868524,-26.754980079681275,-26.804780876494025,-26.85458167330677,-26.904382470119522,-26.954183266932272,-27.00398406374502,-27.05378486055777,-27.10358565737052,-27.153386454183266,-27.203187250996017,-27.252988047808763,-27.302788844621514,-27.352589641434264,-27.40239043824701,-27.45219123505976,-27.50199203187251,-27.551792828685258,-27.60159362549801,-27.65139442231076,-27.701195219123505,-27.750996015936256,-27.800796812749002,-27.850597609561753,-27.900398406374503,-27.95019920318725,-28.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/large_positive.json
new file mode 100644
index 000000000000..dcc1ffd37748
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/large_positive.json
@@ -0,0 +1 @@
+{"expected":[1.8184465,1.8340783,1.8494813,1.8646619,1.8796259,1.8943791,1.9089273,1.9232757,1.9374295,1.9513937,1.965173,1.9787723,1.9921957,2.0054479,2.0185328,2.0314543,2.0442169,2.0568235,2.0692782,2.0815845,2.0937457,2.1057653,2.117646,2.1293912,2.1410038,2.1524868,2.163843,2.1750748,2.186185,2.197176,2.2080505,2.2188108,2.2294593,2.2399979,2.2504292,2.260755,2.2709777,2.281099,2.291121,2.3010454,2.3108745,2.3206096,2.3302526,2.3398054,2.3492692,2.358646,2.367937,2.3771443,2.3862686,2.395312,2.404276,2.4131613,2.4219694,2.4307022,2.4393601,2.447945,2.456458,2.4649003,2.4732726,2.4815767,2.489813,2.497983,2.5060878,2.5141284,2.5221055,2.5300202,2.5378737,2.5456667,2.5534003,2.561075,2.5686922,2.5762522,2.5837564,2.5912051,2.5985994,2.60594,2.6132278,2.6204636,2.6276476,2.6347811,2.6418645,2.6488986,2.655884,2.6628215,2.6697116,2.6765552,2.6833525,2.6901042,2.6968112,2.703474,2.710093,2.7166688,2.7232022,2.7296934,2.736143,2.7425518,2.7489202,2.7552485,2.7615373,2.767787,2.7739985,2.7801716,2.7863073,2.7924058,2.7984679,2.8044934,2.8104832,2.8164375,2.8223567,2.8282416,2.8340921,2.839909,2.8456924,2.8514426,2.8571603,2.862846,2.8684993,2.8741212,2.8797119,2.8852715,2.8908007,2.8962996,2.9017687,2.9072084,2.9126186,2.918,2.9233527,2.9286768,2.9339733,2.939242,2.944483,2.949697,2.9548838,2.9600444,2.9651785,2.9702864,2.9753685,2.9804251,2.9854565,2.9904628,2.995444,3.000401,3.0053334,3.010242,3.0151265,3.0199873,3.0248249,3.0296392,3.0344305,3.0391994,3.0439456,3.048669,3.053371,3.0580506,3.0627089,3.0673454,3.0719607,3.0765548,3.081128,3.0856805,3.0902123,3.094724,3.0992155,3.1036868,3.1081383,3.1125705,3.116983,3.121376,3.12575,3.130105,3.1344411,3.138759,3.1430578,3.1473386,3.1516013,3.1558459,3.1600726,3.1642814,3.1684728,3.1726468,3.1768034,3.1809428,3.1850653,3.1891708,3.1932597,3.197332,3.201388,3.2054274,3.2094507,3.2134578,3.2174492,3.2214246,3.2253845,3.2293286,3.2332575,3.2371707,3.241069,3.2449522,3.2488203,3.2526736,3.2565122,3.2603362,3.2641456,3.2679405,3.2717211,3.2754877,3.2792401,3.2829785,3.2867029,3.2904136,3.2941108,3.297794,3.3014643,3.305121,3.3087642,3.3123944,3.3160112,3.3196154,3.3232064,3.3267848,3.3303502,3.3339033,3.3374436,3.3409715,3.3444872,3.3479905,3.3514814,3.3549604,3.3584275,3.3618824,3.3653257,3.368757,3.3721764,3.3755844,3.3789809,3.382366,3.3857396,3.3891017,3.3924527,3.3957927,3.3991215,3.402439,3.405746,3.409042,3.412327,3.4156013,3.418865,3.4221182,3.425361,3.428593,3.4318147,3.4350262,3.4382274,3.4414184,3.4445992,3.4477699,3.4509308,3.4540815,3.4572225,3.4603536,3.463475,3.4665868,3.469689,3.4727814,3.4758642,3.4789379,3.482002,3.4850566,3.4881022,3.4911385,3.4941654,3.4971836,3.5001924,3.5031924,3.5061831,3.5091653,3.5121386,3.5151029,3.5180585,3.5210056,3.523944,3.5268736,3.5297947,3.5327072,3.5356116,3.5385075,3.541395,3.544274,3.5471451,3.5500076,3.5528622,3.5557086,3.558547,3.5613775,3.5642,3.5670142,3.569821,3.5726197,3.5754106,3.5781937,3.580969,3.583737,3.586497,3.5892498,3.5919948,3.5947323,3.5974624,3.6001852,3.6029003,3.6056082,3.6083088,3.6110022,3.6136885,3.6163673,3.619039,3.6217039,3.6243613,3.627012,3.6296556,3.6322923,3.634922,3.6375449,3.6401608,3.6427698,3.6453724,3.6479678,3.6505568,3.653139,3.6557148,3.6582837,3.660846,3.663402,3.6659515,3.6684942,3.6710308,3.6735609,3.6760845,3.6786017,3.6811128,3.6836174,3.686116,3.6886082,3.6910942,3.6935742,3.696048,3.6985157,3.7009773,3.7034328,3.7058823,3.7083259,3.7107637,3.7131953,3.7156212,3.7180412,3.7204554,3.7228637,3.7252662,3.727663,3.7300541,3.7324395,3.7348192,3.737193,3.7395618,3.7419245,3.7442818,3.7466335,3.7489798,3.7513206,3.753656,3.7559857,3.75831,3.7606292,3.762943,3.7652514,3.7675545,3.7698522,3.7721448,3.774432,3.776714,3.778991,3.7812626,3.7835293,3.7857907,3.788047,3.7902982,3.7925444,3.7947857,3.7970219,3.799253,3.8014793,3.8037004,3.8059168,3.8081284,3.810335,3.8125367,3.8147337,3.8169258,3.819113,3.8212957,3.8234735,3.8256466,3.8278148,3.8299785,3.8321376,3.834292,3.8364418,3.8385868,3.8407273,3.8428633,3.8449948,3.8471217,3.849244,3.851362,3.8534753,3.8555844,3.857689,3.859789,3.8618846,3.863976,3.8660629,3.8681457,3.870224,3.872298,3.8743677,3.8764331,3.8784943,3.8805513,3.882604,3.8846526,3.8866968,3.8887372,3.890773,3.892805,3.8948328,3.8968565,3.8988762,3.9008918,3.902903,3.9049106,3.906914,3.9089134,3.910909,3.9129002,3.914888,3.9168715,3.9188511,3.920827,3.9227986,3.9247665,3.9267306,3.928691,3.9306474,3.9326,3.9345489,3.9364939,3.938435,3.9403727,3.9423065,3.9442365,3.9461627,3.9480853,3.9500043,3.9519196,3.9538312,3.955739,3.9576433,3.9595442,3.961441,3.9633346,3.9652245,3.9671109,3.968994,3.970873,3.9727488,3.974621,3.9764898,3.978355,3.9802167,3.9820752,3.98393,3.9857817,3.9876297,3.9894743,3.9913156,3.9931533,3.9949877,3.996819,3.9986467,4.000471,4.002292,4.0041103,4.0059247,4.0077357,4.009544,4.0113487,4.01315,4.0149484,4.016743,4.018535,4.0203238,4.022109,4.0238914,4.0256705],"x":[3.0,3.049800796812749,3.099601593625498,3.149402390438247,3.199203187250996,3.249003984063745,3.298804780876494,3.348605577689243,3.398406374501992,3.448207171314741,3.49800796812749,3.547808764940239,3.597609561752988,3.647410358565737,3.697211155378486,3.747011952191235,3.7968127490039842,3.846613545816733,3.896414342629482,3.946215139442231,3.99601593625498,4.0458167330677295,4.095617529880478,4.145418326693227,4.195219123505976,4.245019920318725,4.294820717131474,4.344621513944223,4.394422310756972,4.444223107569721,4.49402390438247,4.543824701195219,4.5936254980079685,4.643426294820717,4.693227091633466,4.743027888446215,4.792828685258964,4.842629482071713,4.892430278884462,4.942231075697211,4.99203187250996,5.04183266932271,5.091633466135458,5.1414342629482075,5.191235059760956,5.241035856573705,5.290836653386454,5.340637450199203,5.390438247011952,5.440239043824701,5.49003984063745,5.539840637450199,5.589641434262949,5.639442231075697,5.6892430278884465,5.739043824701195,5.788844621513944,5.838645418326693,5.888446215139442,5.938247011952191,5.98804780876494,6.03784860557769,6.087649402390438,6.137450199203188,6.187250996015936,6.2370517928286855,6.286852589641434,6.336653386454183,6.386454183266932,6.436254980079681,6.48605577689243,6.535856573705179,6.585657370517929,6.635458167330677,6.685258964143427,6.735059760956175,6.7848605577689245,6.834661354581673,6.884462151394422,6.934262948207171,6.98406374501992,7.03386454183267,7.083665338645418,7.133466135458168,7.183266932270916,7.233067729083666,7.282868525896414,7.3326693227091635,7.382470119521912,7.432270916334661,7.48207171314741,7.531872509960159,7.581673306772909,7.631474103585657,7.681274900398407,7.731075697211155,7.780876494023905,7.830677290836653,7.8804780876494025,7.930278884462151,7.9800796812749,8.02988047808765,8.079681274900398,8.129482071713147,8.179282868525897,8.229083665338646,8.278884462151394,8.328685258964143,8.378486055776893,8.428286852589641,8.47808764940239,8.52788844621514,8.577689243027889,8.627490039840637,8.677290836653386,8.727091633466136,8.776892430278885,8.826693227091633,8.876494023904382,8.926294820717132,8.97609561752988,9.025896414342629,9.07569721115538,9.125498007968128,9.175298804780876,9.225099601593625,9.274900398406375,9.324701195219124,9.374501992031872,9.42430278884462,9.474103585657371,9.52390438247012,9.573705179282868,9.623505976095618,9.673306772908367,9.723107569721115,9.772908366533864,9.822709163346614,9.872509960159363,9.922310756972111,9.97211155378486,10.02191235059761,10.071713147410359,10.121513944223107,10.171314741035857,10.221115537848606,10.270916334661354,10.320717131474103,10.370517928286853,10.420318725099602,10.47011952191235,10.5199203187251,10.569721115537849,10.619521912350598,10.669322709163346,10.719123505976096,10.768924302788845,10.818725099601593,10.868525896414342,10.918326693227092,10.96812749003984,11.01792828685259,11.06772908366534,11.117529880478088,11.167330677290837,11.217131474103585,11.266932270916335,11.316733067729084,11.366533864541832,11.41633466135458,11.466135458167331,11.51593625498008,11.565737051792828,11.615537848605578,11.665338645418327,11.715139442231076,11.764940239043824,11.814741035856574,11.864541832669323,11.914342629482071,11.96414342629482,12.01394422310757,12.063745019920319,12.113545816733067,12.163346613545817,12.213147410358566,12.262948207171315,12.312749003984063,12.362549800796813,12.412350597609562,12.46215139442231,12.51195219123506,12.56175298804781,12.611553784860558,12.661354581673306,12.711155378486056,12.760956175298805,12.810756972111554,12.860557768924302,12.910358565737052,12.9601593625498,13.00996015936255,13.0597609561753,13.109561752988048,13.159362549800797,13.209163346613545,13.258964143426295,13.308764940239044,13.358565737051793,13.408366533864541,13.458167330677291,13.50796812749004,13.557768924302788,13.607569721115539,13.657370517928287,13.707171314741036,13.756972111553784,13.806772908366534,13.856573705179283,13.906374501992032,13.95617529880478,14.00597609561753,14.055776892430279,14.105577689243027,14.155378486055778,14.205179282868526,14.254980079681275,14.304780876494023,14.354581673306773,14.404382470119522,14.45418326693227,14.50398406374502,14.55378486055777,14.603585657370518,14.653386454183266,14.703187250996017,14.752988047808765,14.802788844621514,14.852589641434262,14.902390438247012,14.952191235059761,15.00199203187251,15.05179282868526,15.101593625498008,15.151394422310757,15.201195219123505,15.250996015936256,15.300796812749004,15.350597609561753,15.400398406374501,15.450199203187251,15.5,15.549800796812749,15.599601593625499,15.649402390438247,15.699203187250996,15.749003984063744,15.798804780876495,15.848605577689243,15.898406374501992,15.94820717131474,15.99800796812749,16.04780876494024,16.09760956175299,16.147410358565736,16.197211155378486,16.247011952191237,16.296812749003983,16.346613545816734,16.39641434262948,16.44621513944223,16.49601593625498,16.545816733067728,16.595617529880478,16.64541832669323,16.695219123505975,16.745019920318725,16.794820717131476,16.844621513944222,16.894422310756973,16.94422310756972,16.99402390438247,17.04382470119522,17.093625498007967,17.143426294820717,17.193227091633467,17.243027888446214,17.292828685258964,17.342629482071715,17.39243027888446,17.44223107569721,17.49203187250996,17.54183266932271,17.59163346613546,17.641434262948206,17.691235059760956,17.741035856573706,17.790836653386453,17.840637450199203,17.890438247011954,17.9402390438247,17.99003984063745,18.0398406374502,18.089641434262948,18.139442231075698,18.189243027888445,18.239043824701195,18.288844621513945,18.338645418326692,18.388446215139442,18.438247011952193,18.48804780876494,18.53784860557769,18.58764940239044,18.637450199203187,18.687250996015937,18.737051792828684,18.786852589641434,18.836653386454184,18.88645418326693,18.93625498007968,18.98605577689243,19.03585657370518,19.08565737051793,19.13545816733068,19.185258964143426,19.235059760956176,19.284860557768923,19.334661354581673,19.384462151394423,19.43426294820717,19.48406374501992,19.53386454183267,19.583665338645417,19.633466135458168,19.683266932270918,19.733067729083665,19.782868525896415,19.83266932270916,19.882470119521912,19.932270916334662,19.98207171314741,20.03187250996016,20.08167330677291,20.131474103585656,20.181274900398407,20.231075697211157,20.280876494023904,20.330677290836654,20.3804780876494,20.43027888446215,20.4800796812749,20.529880478087648,20.5796812749004,20.62948207171315,20.679282868525895,20.729083665338646,20.778884462151396,20.828685258964143,20.878486055776893,20.92828685258964,20.97808764940239,21.02788844621514,21.077689243027887,21.127490039840637,21.177290836653388,21.227091633466134,21.276892430278885,21.326693227091635,21.37649402390438,21.426294820717132,21.47609561752988,21.52589641434263,21.57569721115538,21.625498007968126,21.675298804780876,21.725099601593627,21.774900398406373,21.824701195219124,21.874501992031874,21.92430278884462,21.97410358565737,22.02390438247012,22.073705179282868,22.12350597609562,22.173306772908365,22.223107569721115,22.272908366533866,22.322709163346612,22.372509960159363,22.422310756972113,22.47211155378486,22.52191235059761,22.57171314741036,22.621513944223107,22.671314741035857,22.721115537848604,22.770916334661354,22.820717131474105,22.87051792828685,22.9203187250996,22.970119521912352,23.0199203187251,23.06972111553785,23.1195219123506,23.169322709163346,23.219123505976096,23.268924302788843,23.318725099601593,23.368525896414344,23.41832669322709,23.46812749003984,23.51792828685259,23.567729083665338,23.617529880478088,23.66733067729084,23.717131474103585,23.766932270916335,23.816733067729082,23.866533864541832,23.916334661354583,23.96613545816733,24.01593625498008,24.06573705179283,24.115537848605577,24.165338645418327,24.215139442231077,24.264940239043824,24.314741035856574,24.36454183266932,24.41434262948207,24.46414342629482,24.51394422310757,24.56374501992032,24.61354581673307,24.663346613545816,24.713147410358566,24.762948207171316,24.812749003984063,24.862549800796813,24.91235059760956,24.96215139442231,25.01195219123506,25.061752988047807,25.111553784860558,25.161354581673308,25.211155378486055,25.260956175298805,25.310756972111555,25.360557768924302,25.410358565737052,25.4601593625498,25.50996015936255,25.5597609561753,25.609561752988046,25.659362549800797,25.709163346613547,25.758964143426294,25.808764940239044,25.858565737051794,25.90836653386454,25.95816733067729,26.00796812749004,26.05776892430279,26.10756972111554,26.157370517928285,26.207171314741036,26.256972111553786,26.306772908366533,26.356573705179283,26.406374501992033,26.45617529880478,26.50597609561753,26.55577689243028,26.605577689243027,26.655378486055778,26.705179282868524,26.754980079681275,26.804780876494025,26.85458167330677,26.904382470119522,26.954183266932272,27.00398406374502,27.05378486055777,27.10358565737052,27.153386454183266,27.203187250996017,27.252988047808763,27.302788844621514,27.352589641434264,27.40239043824701,27.45219123505976,27.50199203187251,27.551792828685258,27.60159362549801,27.65139442231076,27.701195219123505,27.750996015936256,27.800796812749002,27.850597609561753,27.900398406374503,27.95019920318725,28.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/larger_negative.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/larger_negative.json
new file mode 100644
index 000000000000..fad5c50d9f04
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/larger_negative.json
@@ -0,0 +1 @@
+{"expected":[-4.0256705,-4.0307765,-4.0358567,-4.040911,-4.0459404,-4.050944,-4.055923,-4.0608773,-4.0658073,-4.070713,-4.075595,-4.0804534,-4.085288,-4.0900993,-4.0948877,-4.0996532,-4.1043963,-4.109117,-4.1138153,-4.1184916,-4.1231465,-4.1277795,-4.1323915,-4.1369824,-4.141552,-4.146101,-4.150629,-4.155137,-4.1596246,-4.1640925,-4.16854,-4.1729684,-4.1773767,-4.181766,-4.1861362,-4.1904874,-4.1948195,-4.1991334,-4.2034283,-4.207705,-4.2119637,-4.2162037,-4.2204266,-4.2246313,-4.2288184,-4.232988,-4.2371407,-4.241276,-4.245394,-4.2494955,-4.25358,-4.257648,-4.2616997,-4.2657347,-4.269754,-4.2737565,-4.2777433,-4.281715,-4.2856703,-4.28961,-4.2935343,-4.2974434,-4.3013372,-4.305216,-4.3090796,-4.3129287,-4.316763,-4.3205824,-4.324387,-4.328178,-4.331954,-4.335716,-4.339464,-4.343198,-4.346918,-4.350624,-4.3543167,-4.357996,-4.3616614,-4.3653135,-4.3689523,-4.372578,-4.3761907,-4.3797903,-4.383377,-4.386951,-4.390512,-4.3940606,-4.3975964,-4.4011197,-4.404631,-4.40813,-4.411617,-4.415091,-4.418554,-4.422004,-4.425443,-4.4288697,-4.4322853,-4.435689,-4.439081,-4.4424615,-4.445831,-4.4491887,-4.4525356,-4.455871,-4.459195,-4.4625087,-4.4658113,-4.469103,-4.472384,-4.4756536,-4.4789133,-4.482162,-4.4854,-4.4886284,-4.491846,-4.495053,-4.49825,-4.5014367,-4.5046134,-4.50778,-4.5109363,-4.514083,-4.51722,-4.520347,-4.523464,-4.5265718,-4.52967,-4.5327578,-4.5358367,-4.538906,-4.541966,-4.545017,-4.5480585,-4.5510902,-4.5541134,-4.5571275,-4.560132,-4.563128,-4.566115,-4.5690928,-4.572062,-4.5750227,-4.5779743,-4.5809174,-4.5838513,-4.586777,-4.5896945,-4.592603,-4.5955033,-4.5983953,-4.601279,-4.604154,-4.6070213,-4.60988,-4.612731,-4.6155734,-4.6184077,-4.6212344,-4.624053,-4.6268635,-4.6296663,-4.6324615,-4.6352487,-4.638028,-4.6407995,-4.6435637,-4.6463203,-4.649069,-4.65181,-4.6545444,-4.6572704,-4.6599894,-4.662701,-4.6654053,-4.6681023,-4.670792,-4.6734743,-4.67615,-4.6788177,-4.681479,-4.684133,-4.68678,-4.68942,-4.6920533,-4.6946793,-4.6972985,-4.699911,-4.7025166,-4.7051153,-4.7077074,-4.710293,-4.7128716,-4.7154436,-4.7180095,-4.720568,-4.7231207,-4.7256665,-4.728206,-4.730739,-4.733266,-4.735786,-4.7383,-4.7408075,-4.743309,-4.7458043,-4.748293,-4.750776,-4.7532525,-4.755723,-4.7581873,-4.7606454,-4.763098,-4.765544,-4.7679844,-4.7704186,-4.772847,-4.77527,-4.7776866,-4.7800975,-4.7825027,-4.784902,-4.7872953,-4.7896833,-4.7920656,-4.794442,-4.796813,-4.7991786,-4.801538,-4.803892,-4.806241,-4.808584,-4.8109217,-4.813254,-4.815581,-4.817902,-4.820218,-4.822529,-4.824834,-4.827134,-4.8294287,-4.8317184,-4.8340025,-4.836282,-4.8385553,-4.840824,-4.8430877,-4.8453465,-4.8475995,-4.849848,-4.8520913,-4.8543296,-4.8565626,-4.8587914,-4.8610144,-4.8632326,-4.865446,-4.867655,-4.8698587,-4.8720574,-4.874252,-4.876441,-4.8786254,-4.880805,-4.88298,-4.8851504,-4.8873158,-4.889477,-4.891633,-4.8937845,-4.8959312,-4.8980737,-4.900212,-4.9023447,-4.9044733,-4.9065976,-4.908717,-4.9108324,-4.9129434,-4.9150496,-4.9171515,-4.9192486,-4.921342,-4.9234304,-4.9255147,-4.9275947,-4.9296703,-4.9317417,-4.933809,-4.9358716,-4.9379306,-4.939985,-4.9420347,-4.944081,-4.9461226,-4.94816,-4.9501934,-4.952223,-4.954248,-4.9562693,-4.9582863,-4.9602995,-4.9623084,-4.9643135,-4.9663143,-4.9683113,-4.970304,-4.972293,-4.974278,-4.976259,-4.978236,-4.9802094,-4.982179,-4.9841447,-4.9861064,-4.988064,-4.990018,-4.991968,-4.9939146,-4.9958572,-4.997796,-4.999731,-5.0016627,-5.00359,-5.005514,-5.0074344,-5.009351,-5.011264,-5.013173,-5.0150785,-5.0169806,-5.018879,-5.020774,-5.022665,-5.024553,-5.026437,-5.028317,-5.0301943,-5.032068,-5.0339375,-5.0358043,-5.0376673,-5.0395265,-5.041383,-5.0432353,-5.0450845,-5.0469303,-5.048773,-5.050612,-5.0524473,-5.05428,-5.0561085,-5.0579343,-5.0597568,-5.0615754,-5.063391,-5.0652037,-5.067013,-5.0688186,-5.070621,-5.0724206,-5.0742164,-5.0760093,-5.077799,-5.0795856,-5.081369,-5.083149,-5.0849257,-5.0866995,-5.08847,-5.0902376,-5.092002,-5.0937634,-5.0955215,-5.0972767,-5.0990286,-5.1007776,-5.102524,-5.1042666,-5.106006,-5.1077433,-5.109477,-5.111208,-5.1129355,-5.1146603,-5.116382,-5.118101,-5.1198173,-5.12153,-5.1232405,-5.1249475,-5.126652,-5.128353,-5.1300516,-5.1317472,-5.13344,-5.13513,-5.136817,-5.1385007,-5.1401825,-5.141861,-5.1435366,-5.1452093,-5.1468797,-5.1485467,-5.1502113,-5.151873,-5.153532,-5.1551886,-5.156842,-5.158493,-5.160141,-5.1617866,-5.1634293,-5.165069,-5.166706,-5.1683407,-5.169973,-5.1716022,-5.1732287,-5.174853,-5.176474,-5.178093,-5.179709,-5.1813226,-5.1829333,-5.1845417,-5.1861477,-5.187751,-5.1893516,-5.1909494,-5.192545,-5.194138,-5.1957283,-5.197316,-5.1989017,-5.2004848,-5.202065,-5.203643,-5.2052183,-5.206791,-5.2083616,-5.2099295,-5.211495,-5.213058,-5.2146187,-5.216177,-5.217733,-5.2192864,-5.220837,-5.222386,-5.223932,-5.225476,-5.227017,-5.228556,-5.230093,-5.231627,-5.233159,-5.2346888,-5.236216,-5.237741,-5.2392635,-5.2407837,-5.242302,-5.2438173,-5.245331,-5.246842,-5.248351,-5.2498574,-5.251362,-5.252864,-5.2543635,-5.2558613,-5.2573566,-5.2588496,-5.26034,-5.261829,-5.2633157,-5.2647996,-5.2662816,-5.2677617,-5.269239,-5.2707148,-5.2721877,-5.2736588,-5.275128,-5.2765946,-5.2780595,-5.279522,-5.280982,-5.2824407,-5.2838964,-5.285351,-5.2868023,-5.2882524,-5.2897,-5.2911453,-5.292589,-5.2940307,-5.2954698,-5.296907,-5.298342],"x":[-28.0,-28.143426294820717,-28.286852589641434,-28.43027888446215,-28.573705179282868,-28.717131474103585,-28.860557768924302,-29.00398406374502,-29.147410358565736,-29.290836653386453,-29.43426294820717,-29.577689243027887,-29.721115537848604,-29.86454183266932,-30.00796812749004,-30.15139442231076,-30.294820717131476,-30.438247011952193,-30.58167330677291,-30.725099601593627,-30.868525896414344,-31.01195219123506,-31.155378486055778,-31.298804780876495,-31.44223107569721,-31.58565737051793,-31.729083665338646,-31.872509960159363,-32.01593625498008,-32.1593625498008,-32.30278884462152,-32.44621513944223,-32.58964143426295,-32.733067729083665,-32.876494023904385,-33.0199203187251,-33.16334661354582,-33.30677290836653,-33.45019920318725,-33.59362549800797,-33.73705179282869,-33.8804780876494,-34.02390438247012,-34.167330677290835,-34.310756972111555,-34.45418326693227,-34.59760956175299,-34.7410358565737,-34.88446215139442,-35.02788844621514,-35.17131474103586,-35.31474103585657,-35.45816733067729,-35.601593625498005,-35.745019920318725,-35.88844621513944,-36.03187250996016,-36.17529880478088,-36.31872509960159,-36.462151394422314,-36.60557768924303,-36.74900398406375,-36.89243027888446,-37.03585657370518,-37.179282868525895,-37.322709163346616,-37.46613545816733,-37.60956175298805,-37.75298804780876,-37.896414342629484,-38.0398406374502,-38.18326693227092,-38.32669322709163,-38.47011952191235,-38.613545816733065,-38.756972111553786,-38.9003984063745,-39.04382470119522,-39.18725099601593,-39.330677290836654,-39.47410358565737,-39.61752988047809,-39.7609561752988,-39.90438247011952,-40.04780876494024,-40.191235059760956,-40.33466135458168,-40.47808764940239,-40.62151394422311,-40.764940239043824,-40.908366533864545,-41.05179282868526,-41.19521912350598,-41.33864541832669,-41.48207171314741,-41.625498007968126,-41.76892430278885,-41.91235059760956,-42.05577689243028,-42.199203187250994,-42.342629482071715,-42.48605577689243,-42.62948207171315,-42.77290836653386,-42.91633466135458,-43.059760956175296,-43.20318725099602,-43.34661354581673,-43.49003984063745,-43.633466135458164,-43.776892430278885,-43.9203187250996,-44.06374501992032,-44.20717131474104,-44.35059760956175,-44.49402390438247,-44.63745019920319,-44.78087649402391,-44.92430278884462,-45.06772908366534,-45.211155378486055,-45.354581673306775,-45.49800796812749,-45.64143426294821,-45.78486055776892,-45.92828685258964,-46.07171314741036,-46.21513944223108,-46.35856573705179,-46.50199203187251,-46.645418326693225,-46.788844621513945,-46.93227091633466,-47.07569721115538,-47.21912350597609,-47.36254980079681,-47.50597609561753,-47.64940239043825,-47.79282868525896,-47.93625498007968,-48.0796812749004,-48.223107569721115,-48.366533864541836,-48.50996015936255,-48.65338645418327,-48.79681274900398,-48.940239043824704,-49.08366533864542,-49.22709163346614,-49.37051792828685,-49.51394422310757,-49.657370517928285,-49.800796812749006,-49.94422310756972,-50.08764940239044,-50.23107569721115,-50.374501992031874,-50.51792828685259,-50.66135458167331,-50.80478087649402,-50.94820717131474,-51.091633466135455,-51.235059760956176,-51.37848605577689,-51.52191235059761,-51.66533864541832,-51.808764940239044,-51.95219123505976,-52.09561752988048,-52.2390438247012,-52.38247011952191,-52.52589641434263,-52.669322709163346,-52.81274900398407,-52.95617529880478,-53.0996015936255,-53.243027888446214,-53.386454183266935,-53.52988047808765,-53.67330677290837,-53.81673306772908,-53.9601593625498,-54.103585657370516,-54.24701195219124,-54.39043824701195,-54.53386454183267,-54.677290836653384,-54.820717131474105,-54.96414342629482,-55.10756972111554,-55.25099601593625,-55.39442231075697,-55.537848605577686,-55.68127490039841,-55.82470119521912,-55.96812749003984,-56.11155378486056,-56.254980079681275,-56.398406374501995,-56.54183266932271,-56.68525896414343,-56.82868525896414,-56.97211155378486,-57.11553784860558,-57.2589641434263,-57.40239043824701,-57.54581673306773,-57.689243027888445,-57.832669322709165,-57.97609561752988,-58.1195219123506,-58.26294820717131,-58.40637450199203,-58.54980079681275,-58.69322709163347,-58.83665338645418,-58.9800796812749,-59.123505976095615,-59.266932270916335,-59.41035856573705,-59.55378486055777,-59.69721115537848,-59.8406374501992,-59.98406374501992,-60.12749003984064,-60.27091633466136,-60.41434262948207,-60.55776892430279,-60.701195219123505,-60.844621513944226,-60.98804780876494,-61.13147410358566,-61.27490039840637,-61.418326693227094,-61.56175298804781,-61.70517928286853,-61.84860557768924,-61.99203187250996,-62.135458167330675,-62.278884462151396,-62.42231075697211,-62.56573705179283,-62.70916334661354,-62.852589641434264,-62.99601593625498,-63.1394422310757,-63.28286852589641,-63.42629482071713,-63.569721115537845,-63.713147410358566,-63.85657370517928,-64.0,-64.14342629482071,-64.28685258964144,-64.43027888446215,-64.57370517928287,-64.71713147410358,-64.86055776892431,-65.00398406374502,-65.14741035856574,-65.29083665338645,-65.43426294820718,-65.57768924302789,-65.7211155378486,-65.86454183266932,-66.00796812749005,-66.15139442231076,-66.29482071713147,-66.43824701195219,-66.58167330677291,-66.72509960159363,-66.86852589641434,-67.01195219123505,-67.15537848605578,-67.2988047808765,-67.44223107569721,-67.58565737051792,-67.72908366533865,-67.87250996015936,-68.01593625498008,-68.1593625498008,-68.30278884462152,-68.44621513944223,-68.58964143426294,-68.73306772908367,-68.87649402390439,-69.0199203187251,-69.16334661354581,-69.30677290836654,-69.45019920318725,-69.59362549800797,-69.73705179282868,-69.88047808764941,-70.02390438247012,-70.16733067729083,-70.31075697211155,-70.45418326693228,-70.59760956175299,-70.7410358565737,-70.88446215139442,-71.02788844621514,-71.17131474103586,-71.31474103585657,-71.45816733067728,-71.60159362549801,-71.74501992031873,-71.88844621513944,-72.03187250996017,-72.17529880478088,-72.3187250996016,-72.4621513944223,-72.60557768924303,-72.74900398406375,-72.89243027888446,-73.03585657370517,-73.1792828685259,-73.32270916334662,-73.46613545816733,-73.60956175298804,-73.75298804780877,-73.89641434262948,-74.0398406374502,-74.18326693227091,-74.32669322709164,-74.47011952191235,-74.61354581673307,-74.75697211155378,-74.9003984063745,-75.04382470119522,-75.18725099601593,-75.33067729083665,-75.47410358565737,-75.61752988047809,-75.7609561752988,-75.90438247011951,-76.04780876494024,-76.19123505976096,-76.33466135458167,-76.4780876494024,-76.62151394422311,-76.76494023904382,-76.90836653386454,-77.05179282868527,-77.19521912350598,-77.33864541832669,-77.4820717131474,-77.62549800796813,-77.76892430278885,-77.91235059760956,-78.05577689243027,-78.199203187251,-78.34262948207171,-78.48605577689243,-78.62948207171314,-78.77290836653387,-78.91633466135458,-79.0597609561753,-79.20318725099601,-79.34661354581674,-79.49003984063745,-79.63346613545816,-79.77689243027888,-79.9203187250996,-80.06374501992032,-80.20717131474103,-80.35059760956176,-80.49402390438247,-80.63745019920319,-80.7808764940239,-80.92430278884463,-81.06772908366534,-81.21115537848605,-81.35458167330677,-81.4980079681275,-81.64143426294821,-81.78486055776892,-81.92828685258964,-82.07171314741036,-82.21513944223108,-82.35856573705179,-82.5019920318725,-82.64541832669323,-82.78884462151395,-82.93227091633466,-83.07569721115537,-83.2191235059761,-83.36254980079681,-83.50597609561753,-83.64940239043824,-83.79282868525897,-83.93625498007968,-84.0796812749004,-84.22310756972112,-84.36653386454184,-84.50996015936255,-84.65338645418326,-84.79681274900399,-84.9402390438247,-85.08366533864542,-85.22709163346613,-85.37051792828686,-85.51394422310757,-85.65737051792829,-85.800796812749,-85.94422310756973,-86.08764940239044,-86.23107569721115,-86.37450199203187,-86.5179282868526,-86.66135458167331,-86.80478087649402,-86.94820717131473,-87.09163346613546,-87.23505976095618,-87.37848605577689,-87.5219123505976,-87.66533864541833,-87.80876494023904,-87.95219123505976,-88.09561752988049,-88.2390438247012,-88.38247011952191,-88.52589641434263,-88.66932270916335,-88.81274900398407,-88.95617529880478,-89.0996015936255,-89.24302788844622,-89.38645418326693,-89.52988047808765,-89.67330677290836,-89.81673306772909,-89.9601593625498,-90.10358565737052,-90.24701195219123,-90.39043824701196,-90.53386454183267,-90.67729083665338,-90.8207171314741,-90.96414342629483,-91.10756972111554,-91.25099601593625,-91.39442231075697,-91.5378486055777,-91.6812749003984,-91.82470119521912,-91.96812749003983,-92.11155378486056,-92.25498007968127,-92.39840637450199,-92.54183266932272,-92.68525896414343,-92.82868525896414,-92.97211155378486,-93.11553784860558,-93.2589641434263,-93.40239043824701,-93.54581673306772,-93.68924302788845,-93.83266932270917,-93.97609561752988,-94.11952191235059,-94.26294820717132,-94.40637450199203,-94.54980079681275,-94.69322709163346,-94.83665338645419,-94.9800796812749,-95.12350597609561,-95.26693227091633,-95.41035856573706,-95.55378486055777,-95.69721115537848,-95.8406374501992,-95.98406374501992,-96.12749003984064,-96.27091633466135,-96.41434262948208,-96.55776892430279,-96.7011952191235,-96.84462151394422,-96.98804780876495,-97.13147410358566,-97.27490039840637,-97.41832669322709,-97.56175298804781,-97.70517928286853,-97.84860557768924,-97.99203187250995,-98.13545816733068,-98.2788844621514,-98.42231075697211,-98.56573705179282,-98.70916334661355,-98.85258964143426,-98.99601593625498,-99.13944223107569,-99.28286852589642,-99.42629482071713,-99.56972111553785,-99.71314741035856,-99.85657370517929,-100.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/larger_positive.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/larger_positive.json
new file mode 100644
index 000000000000..cc76630ce85c
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/larger_positive.json
@@ -0,0 +1 @@
+{"expected":[4.0256705,4.0307765,4.0358567,4.040911,4.0459404,4.050944,4.055923,4.0608773,4.0658073,4.070713,4.075595,4.0804534,4.085288,4.0900993,4.0948877,4.0996532,4.1043963,4.109117,4.1138153,4.1184916,4.1231465,4.1277795,4.1323915,4.1369824,4.141552,4.146101,4.150629,4.155137,4.1596246,4.1640925,4.16854,4.1729684,4.1773767,4.181766,4.1861362,4.1904874,4.1948195,4.1991334,4.2034283,4.207705,4.2119637,4.2162037,4.2204266,4.2246313,4.2288184,4.232988,4.2371407,4.241276,4.245394,4.2494955,4.25358,4.257648,4.2616997,4.2657347,4.269754,4.2737565,4.2777433,4.281715,4.2856703,4.28961,4.2935343,4.2974434,4.3013372,4.305216,4.3090796,4.3129287,4.316763,4.3205824,4.324387,4.328178,4.331954,4.335716,4.339464,4.343198,4.346918,4.350624,4.3543167,4.357996,4.3616614,4.3653135,4.3689523,4.372578,4.3761907,4.3797903,4.383377,4.386951,4.390512,4.3940606,4.3975964,4.4011197,4.404631,4.40813,4.411617,4.415091,4.418554,4.422004,4.425443,4.4288697,4.4322853,4.435689,4.439081,4.4424615,4.445831,4.4491887,4.4525356,4.455871,4.459195,4.4625087,4.4658113,4.469103,4.472384,4.4756536,4.4789133,4.482162,4.4854,4.4886284,4.491846,4.495053,4.49825,4.5014367,4.5046134,4.50778,4.5109363,4.514083,4.51722,4.520347,4.523464,4.5265718,4.52967,4.5327578,4.5358367,4.538906,4.541966,4.545017,4.5480585,4.5510902,4.5541134,4.5571275,4.560132,4.563128,4.566115,4.5690928,4.572062,4.5750227,4.5779743,4.5809174,4.5838513,4.586777,4.5896945,4.592603,4.5955033,4.5983953,4.601279,4.604154,4.6070213,4.60988,4.612731,4.6155734,4.6184077,4.6212344,4.624053,4.6268635,4.6296663,4.6324615,4.6352487,4.638028,4.6407995,4.6435637,4.6463203,4.649069,4.65181,4.6545444,4.6572704,4.6599894,4.662701,4.6654053,4.6681023,4.670792,4.6734743,4.67615,4.6788177,4.681479,4.684133,4.68678,4.68942,4.6920533,4.6946793,4.6972985,4.699911,4.7025166,4.7051153,4.7077074,4.710293,4.7128716,4.7154436,4.7180095,4.720568,4.7231207,4.7256665,4.728206,4.730739,4.733266,4.735786,4.7383,4.7408075,4.743309,4.7458043,4.748293,4.750776,4.7532525,4.755723,4.7581873,4.7606454,4.763098,4.765544,4.7679844,4.7704186,4.772847,4.77527,4.7776866,4.7800975,4.7825027,4.784902,4.7872953,4.7896833,4.7920656,4.794442,4.796813,4.7991786,4.801538,4.803892,4.806241,4.808584,4.8109217,4.813254,4.815581,4.817902,4.820218,4.822529,4.824834,4.827134,4.8294287,4.8317184,4.8340025,4.836282,4.8385553,4.840824,4.8430877,4.8453465,4.8475995,4.849848,4.8520913,4.8543296,4.8565626,4.8587914,4.8610144,4.8632326,4.865446,4.867655,4.8698587,4.8720574,4.874252,4.876441,4.8786254,4.880805,4.88298,4.8851504,4.8873158,4.889477,4.891633,4.8937845,4.8959312,4.8980737,4.900212,4.9023447,4.9044733,4.9065976,4.908717,4.9108324,4.9129434,4.9150496,4.9171515,4.9192486,4.921342,4.9234304,4.9255147,4.9275947,4.9296703,4.9317417,4.933809,4.9358716,4.9379306,4.939985,4.9420347,4.944081,4.9461226,4.94816,4.9501934,4.952223,4.954248,4.9562693,4.9582863,4.9602995,4.9623084,4.9643135,4.9663143,4.9683113,4.970304,4.972293,4.974278,4.976259,4.978236,4.9802094,4.982179,4.9841447,4.9861064,4.988064,4.990018,4.991968,4.9939146,4.9958572,4.997796,4.999731,5.0016627,5.00359,5.005514,5.0074344,5.009351,5.011264,5.013173,5.0150785,5.0169806,5.018879,5.020774,5.022665,5.024553,5.026437,5.028317,5.0301943,5.032068,5.0339375,5.0358043,5.0376673,5.0395265,5.041383,5.0432353,5.0450845,5.0469303,5.048773,5.050612,5.0524473,5.05428,5.0561085,5.0579343,5.0597568,5.0615754,5.063391,5.0652037,5.067013,5.0688186,5.070621,5.0724206,5.0742164,5.0760093,5.077799,5.0795856,5.081369,5.083149,5.0849257,5.0866995,5.08847,5.0902376,5.092002,5.0937634,5.0955215,5.0972767,5.0990286,5.1007776,5.102524,5.1042666,5.106006,5.1077433,5.109477,5.111208,5.1129355,5.1146603,5.116382,5.118101,5.1198173,5.12153,5.1232405,5.1249475,5.126652,5.128353,5.1300516,5.1317472,5.13344,5.13513,5.136817,5.1385007,5.1401825,5.141861,5.1435366,5.1452093,5.1468797,5.1485467,5.1502113,5.151873,5.153532,5.1551886,5.156842,5.158493,5.160141,5.1617866,5.1634293,5.165069,5.166706,5.1683407,5.169973,5.1716022,5.1732287,5.174853,5.176474,5.178093,5.179709,5.1813226,5.1829333,5.1845417,5.1861477,5.187751,5.1893516,5.1909494,5.192545,5.194138,5.1957283,5.197316,5.1989017,5.2004848,5.202065,5.203643,5.2052183,5.206791,5.2083616,5.2099295,5.211495,5.213058,5.2146187,5.216177,5.217733,5.2192864,5.220837,5.222386,5.223932,5.225476,5.227017,5.228556,5.230093,5.231627,5.233159,5.2346888,5.236216,5.237741,5.2392635,5.2407837,5.242302,5.2438173,5.245331,5.246842,5.248351,5.2498574,5.251362,5.252864,5.2543635,5.2558613,5.2573566,5.2588496,5.26034,5.261829,5.2633157,5.2647996,5.2662816,5.2677617,5.269239,5.2707148,5.2721877,5.2736588,5.275128,5.2765946,5.2780595,5.279522,5.280982,5.2824407,5.2838964,5.285351,5.2868023,5.2882524,5.2897,5.2911453,5.292589,5.2940307,5.2954698,5.296907,5.298342],"x":[28.0,28.143426294820717,28.286852589641434,28.43027888446215,28.573705179282868,28.717131474103585,28.860557768924302,29.00398406374502,29.147410358565736,29.290836653386453,29.43426294820717,29.577689243027887,29.721115537848604,29.86454183266932,30.00796812749004,30.15139442231076,30.294820717131476,30.438247011952193,30.58167330677291,30.725099601593627,30.868525896414344,31.01195219123506,31.155378486055778,31.298804780876495,31.44223107569721,31.58565737051793,31.729083665338646,31.872509960159363,32.01593625498008,32.1593625498008,32.30278884462152,32.44621513944223,32.58964143426295,32.733067729083665,32.876494023904385,33.0199203187251,33.16334661354582,33.30677290836653,33.45019920318725,33.59362549800797,33.73705179282869,33.8804780876494,34.02390438247012,34.167330677290835,34.310756972111555,34.45418326693227,34.59760956175299,34.7410358565737,34.88446215139442,35.02788844621514,35.17131474103586,35.31474103585657,35.45816733067729,35.601593625498005,35.745019920318725,35.88844621513944,36.03187250996016,36.17529880478088,36.31872509960159,36.462151394422314,36.60557768924303,36.74900398406375,36.89243027888446,37.03585657370518,37.179282868525895,37.322709163346616,37.46613545816733,37.60956175298805,37.75298804780876,37.896414342629484,38.0398406374502,38.18326693227092,38.32669322709163,38.47011952191235,38.613545816733065,38.756972111553786,38.9003984063745,39.04382470119522,39.18725099601593,39.330677290836654,39.47410358565737,39.61752988047809,39.7609561752988,39.90438247011952,40.04780876494024,40.191235059760956,40.33466135458168,40.47808764940239,40.62151394422311,40.764940239043824,40.908366533864545,41.05179282868526,41.19521912350598,41.33864541832669,41.48207171314741,41.625498007968126,41.76892430278885,41.91235059760956,42.05577689243028,42.199203187250994,42.342629482071715,42.48605577689243,42.62948207171315,42.77290836653386,42.91633466135458,43.059760956175296,43.20318725099602,43.34661354581673,43.49003984063745,43.633466135458164,43.776892430278885,43.9203187250996,44.06374501992032,44.20717131474104,44.35059760956175,44.49402390438247,44.63745019920319,44.78087649402391,44.92430278884462,45.06772908366534,45.211155378486055,45.354581673306775,45.49800796812749,45.64143426294821,45.78486055776892,45.92828685258964,46.07171314741036,46.21513944223108,46.35856573705179,46.50199203187251,46.645418326693225,46.788844621513945,46.93227091633466,47.07569721115538,47.21912350597609,47.36254980079681,47.50597609561753,47.64940239043825,47.79282868525896,47.93625498007968,48.0796812749004,48.223107569721115,48.366533864541836,48.50996015936255,48.65338645418327,48.79681274900398,48.940239043824704,49.08366533864542,49.22709163346614,49.37051792828685,49.51394422310757,49.657370517928285,49.800796812749006,49.94422310756972,50.08764940239044,50.23107569721115,50.374501992031874,50.51792828685259,50.66135458167331,50.80478087649402,50.94820717131474,51.091633466135455,51.235059760956176,51.37848605577689,51.52191235059761,51.66533864541832,51.808764940239044,51.95219123505976,52.09561752988048,52.2390438247012,52.38247011952191,52.52589641434263,52.669322709163346,52.81274900398407,52.95617529880478,53.0996015936255,53.243027888446214,53.386454183266935,53.52988047808765,53.67330677290837,53.81673306772908,53.9601593625498,54.103585657370516,54.24701195219124,54.39043824701195,54.53386454183267,54.677290836653384,54.820717131474105,54.96414342629482,55.10756972111554,55.25099601593625,55.39442231075697,55.537848605577686,55.68127490039841,55.82470119521912,55.96812749003984,56.11155378486056,56.254980079681275,56.398406374501995,56.54183266932271,56.68525896414343,56.82868525896414,56.97211155378486,57.11553784860558,57.2589641434263,57.40239043824701,57.54581673306773,57.689243027888445,57.832669322709165,57.97609561752988,58.1195219123506,58.26294820717131,58.40637450199203,58.54980079681275,58.69322709163347,58.83665338645418,58.9800796812749,59.123505976095615,59.266932270916335,59.41035856573705,59.55378486055777,59.69721115537848,59.8406374501992,59.98406374501992,60.12749003984064,60.27091633466136,60.41434262948207,60.55776892430279,60.701195219123505,60.844621513944226,60.98804780876494,61.13147410358566,61.27490039840637,61.418326693227094,61.56175298804781,61.70517928286853,61.84860557768924,61.99203187250996,62.135458167330675,62.278884462151396,62.42231075697211,62.56573705179283,62.70916334661354,62.852589641434264,62.99601593625498,63.1394422310757,63.28286852589641,63.42629482071713,63.569721115537845,63.713147410358566,63.85657370517928,64.0,64.14342629482071,64.28685258964144,64.43027888446215,64.57370517928287,64.71713147410358,64.86055776892431,65.00398406374502,65.14741035856574,65.29083665338645,65.43426294820718,65.57768924302789,65.7211155378486,65.86454183266932,66.00796812749005,66.15139442231076,66.29482071713147,66.43824701195219,66.58167330677291,66.72509960159363,66.86852589641434,67.01195219123505,67.15537848605578,67.2988047808765,67.44223107569721,67.58565737051792,67.72908366533865,67.87250996015936,68.01593625498008,68.1593625498008,68.30278884462152,68.44621513944223,68.58964143426294,68.73306772908367,68.87649402390439,69.0199203187251,69.16334661354581,69.30677290836654,69.45019920318725,69.59362549800797,69.73705179282868,69.88047808764941,70.02390438247012,70.16733067729083,70.31075697211155,70.45418326693228,70.59760956175299,70.7410358565737,70.88446215139442,71.02788844621514,71.17131474103586,71.31474103585657,71.45816733067728,71.60159362549801,71.74501992031873,71.88844621513944,72.03187250996017,72.17529880478088,72.3187250996016,72.4621513944223,72.60557768924303,72.74900398406375,72.89243027888446,73.03585657370517,73.1792828685259,73.32270916334662,73.46613545816733,73.60956175298804,73.75298804780877,73.89641434262948,74.0398406374502,74.18326693227091,74.32669322709164,74.47011952191235,74.61354581673307,74.75697211155378,74.9003984063745,75.04382470119522,75.18725099601593,75.33067729083665,75.47410358565737,75.61752988047809,75.7609561752988,75.90438247011951,76.04780876494024,76.19123505976096,76.33466135458167,76.4780876494024,76.62151394422311,76.76494023904382,76.90836653386454,77.05179282868527,77.19521912350598,77.33864541832669,77.4820717131474,77.62549800796813,77.76892430278885,77.91235059760956,78.05577689243027,78.199203187251,78.34262948207171,78.48605577689243,78.62948207171314,78.77290836653387,78.91633466135458,79.0597609561753,79.20318725099601,79.34661354581674,79.49003984063745,79.63346613545816,79.77689243027888,79.9203187250996,80.06374501992032,80.20717131474103,80.35059760956176,80.49402390438247,80.63745019920319,80.7808764940239,80.92430278884463,81.06772908366534,81.21115537848605,81.35458167330677,81.4980079681275,81.64143426294821,81.78486055776892,81.92828685258964,82.07171314741036,82.21513944223108,82.35856573705179,82.5019920318725,82.64541832669323,82.78884462151395,82.93227091633466,83.07569721115537,83.2191235059761,83.36254980079681,83.50597609561753,83.64940239043824,83.79282868525897,83.93625498007968,84.0796812749004,84.22310756972112,84.36653386454184,84.50996015936255,84.65338645418326,84.79681274900399,84.9402390438247,85.08366533864542,85.22709163346613,85.37051792828686,85.51394422310757,85.65737051792829,85.800796812749,85.94422310756973,86.08764940239044,86.23107569721115,86.37450199203187,86.5179282868526,86.66135458167331,86.80478087649402,86.94820717131473,87.09163346613546,87.23505976095618,87.37848605577689,87.5219123505976,87.66533864541833,87.80876494023904,87.95219123505976,88.09561752988049,88.2390438247012,88.38247011952191,88.52589641434263,88.66932270916335,88.81274900398407,88.95617529880478,89.0996015936255,89.24302788844622,89.38645418326693,89.52988047808765,89.67330677290836,89.81673306772909,89.9601593625498,90.10358565737052,90.24701195219123,90.39043824701196,90.53386454183267,90.67729083665338,90.8207171314741,90.96414342629483,91.10756972111554,91.25099601593625,91.39442231075697,91.5378486055777,91.6812749003984,91.82470119521912,91.96812749003983,92.11155378486056,92.25498007968127,92.39840637450199,92.54183266932272,92.68525896414343,92.82868525896414,92.97211155378486,93.11553784860558,93.2589641434263,93.40239043824701,93.54581673306772,93.68924302788845,93.83266932270917,93.97609561752988,94.11952191235059,94.26294820717132,94.40637450199203,94.54980079681275,94.69322709163346,94.83665338645419,94.9800796812749,95.12350597609561,95.26693227091633,95.41035856573706,95.55378486055777,95.69721115537848,95.8406374501992,95.98406374501992,96.12749003984064,96.27091633466135,96.41434262948208,96.55776892430279,96.7011952191235,96.84462151394422,96.98804780876495,97.13147410358566,97.27490039840637,97.41832669322709,97.56175298804781,97.70517928286853,97.84860557768924,97.99203187250995,98.13545816733068,98.2788844621514,98.42231075697211,98.56573705179282,98.70916334661355,98.85258964143426,98.99601593625498,99.13944223107569,99.28286852589642,99.42629482071713,99.56972111553785,99.71314741035856,99.85657370517929,100.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/medium_negative.json
new file mode 100644
index 000000000000..8dfa1c5ad507
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/medium_negative.json
@@ -0,0 +1 @@
+{"expected":[-0.8813736,-0.884188,-0.8869967,-0.88979983,-0.89259744,-0.8953895,-0.8981759,-0.90095687,-0.90373224,-0.9065021,-0.9092664,-0.91202533,-0.9147787,-0.91752666,-0.920269,-0.92300606,-0.9257376,-0.92846376,-0.9311844,-0.9338997,-0.9366097,-0.9393143,-0.9420134,-0.9447073,-0.94739574,-0.95007896,-0.9527567,-0.9554293,-0.95809656,-0.96075857,-0.9634152,-0.96606666,-0.96871287,-0.9713539,-0.97398967,-0.9766202,-0.9792456,-0.9818658,-0.9844808,-0.9870907,-0.9896955,-0.9922951,-0.99488956,-0.9974789,-1.0000633,-1.0026425,-1.0052166,-1.0077858,-1.0103499,-1.0129089,-1.0154629,-1.0180119,-1.020556,-1.0230951,-1.0256292,-1.0281583,-1.0306826,-1.0332019,-1.0357163,-1.0382258,-1.0407305,-1.0432302,-1.045725,-1.048215,-1.0507003,-1.0531807,-1.0556562,-1.0581269,-1.060593,-1.0630542,-1.0655106,-1.0679624,-1.0704094,-1.0728518,-1.0752892,-1.0777221,-1.0801504,-1.0825739,-1.0849926,-1.0874069,-1.0898166,-1.0922215,-1.0946218,-1.0970176,-1.0994089,-1.1017956,-1.1041775,-1.1065551,-1.1089281,-1.1112965,-1.1136606,-1.1160201,-1.1183751,-1.1207256,-1.1230718,-1.1254133,-1.1277506,-1.1300834,-1.1324117,-1.1347357,-1.1370554,-1.1393707,-1.1416816,-1.1439881,-1.1462903,-1.1485883,-1.1508818,-1.1531712,-1.1554562,-1.157737,-1.1600134,-1.1622857,-1.1645536,-1.1668174,-1.1690769,-1.1713324,-1.1735836,-1.1758306,-1.1780734,-1.1803122,-1.1825466,-1.1847771,-1.1870034,-1.1892256,-1.1914437,-1.1936578,-1.1958678,-1.1980736,-1.2002754,-1.2024733,-1.2046671,-1.2068568,-1.2090427,-1.2112246,-1.2134023,-1.215576,-1.2177461,-1.219912,-1.2220739,-1.2242321,-1.2263864,-1.2285367,-1.230683,-1.2328255,-1.2349643,-1.237099,-1.23923,-1.2413571,-1.2434804,-1.2456,-1.2477157,-1.2498276,-1.2519358,-1.2540402,-1.2561407,-1.2582377,-1.2603309,-1.2624203,-1.264506,-1.266588,-1.2686664,-1.2707411,-1.272812,-1.2748793,-1.276943,-1.279003,-1.2810594,-1.2831122,-1.2851614,-1.287207,-1.289249,-1.2912874,-1.2933223,-1.2953535,-1.2973813,-1.2994056,-1.3014263,-1.3034436,-1.3054572,-1.3074673,-1.3094741,-1.3114773,-1.313477,-1.3154733,-1.3174663,-1.3194557,-1.3214418,-1.3234242,-1.3254036,-1.3273793,-1.3293518,-1.3313208,-1.3332864,-1.3352488,-1.3372077,-1.3391634,-1.3411157,-1.3430647,-1.3450104,-1.3469527,-1.3488919,-1.3508277,-1.3527602,-1.3546895,-1.3566155,-1.3585383,-1.3604578,-1.3623742,-1.3642873,-1.3661972,-1.3681039,-1.3700074,-1.3719078,-1.3738049,-1.3756989,-1.3775898,-1.3794776,-1.3813622,-1.3832436,-1.385122,-1.3869972,-1.3888694,-1.3907384,-1.3926044,-1.3944674,-1.3963271,-1.398184,-1.4000376,-1.4018884,-1.4037361,-1.4055806,-1.4074223,-1.409261,-1.4110966,-1.4129292,-1.4147589,-1.4165856,-1.4184093,-1.4202302,-1.422048,-1.4238629,-1.4256749,-1.4274839,-1.4292902,-1.4310933,-1.4328938,-1.4346911,-1.4364858,-1.4382775,-1.4400663,-1.4418523,-1.4436355,-1.4454157,-1.4471933,-1.4489679,-1.4507397,-1.4525088,-1.454275,-1.4560385,-1.4577991,-1.4595569,-1.461312,-1.4630644,-1.464814,-1.466561,-1.468305,-1.4700464,-1.4717851,-1.4735209,-1.4752542,-1.4769846,-1.4787124,-1.4804376,-1.4821601,-1.4838799,-1.485597,-1.4873115,-1.4890234,-1.4907326,-1.492439,-1.494143,-1.4958444,-1.497543,-1.4992391,-1.5009326,-1.5026234,-1.5043118,-1.5059974,-1.5076807,-1.5093611,-1.5110393,-1.5127147,-1.5143876,-1.5160581,-1.5177258,-1.5193912,-1.5210541,-1.5227144,-1.5243722,-1.5260276,-1.5276804,-1.5293307,-1.5309786,-1.5326239,-1.534267,-1.5359075,-1.5375456,-1.5391811,-1.5408142,-1.5424451,-1.5440732,-1.5456991,-1.5473228,-1.5489438,-1.5505625,-1.5521787,-1.5537925,-1.5554041,-1.5570133,-1.5586201,-1.5602245,-1.5618266,-1.5634264,-1.5650237,-1.5666187,-1.5682114,-1.5698019,-1.5713899,-1.5729758,-1.5745592,-1.5761404,-1.5777192,-1.5792958,-1.5808702,-1.5824422,-1.584012,-1.5855796,-1.5871447,-1.5887078,-1.5902685,-1.591827,-1.5933833,-1.5949374,-1.5964893,-1.5980389,-1.5995864,-1.6011317,-1.6026746,-1.6042154,-1.605754,-1.6072905,-1.6088248,-1.6103569,-1.6118869,-1.6134148,-1.6149403,-1.6164638,-1.6179852,-1.6195043,-1.6210214,-1.6225364,-1.6240493,-1.62556,-1.6270685,-1.6285751,-1.6300795,-1.6315819,-1.633082,-1.6345801,-1.6360762,-1.6375703,-1.6390622,-1.640552,-1.64204,-1.6435257,-1.6450094,-1.6464912,-1.6479707,-1.6494484,-1.650924,-1.6523974,-1.6538692,-1.6553385,-1.6568061,-1.6582717,-1.6597352,-1.6611967,-1.6626564,-1.6641139,-1.6655695,-1.6670232,-1.6684748,-1.6699246,-1.6713723,-1.6728182,-1.674262,-1.6757039,-1.6771439,-1.6785821,-1.6800181,-1.6814524,-1.6828847,-1.6843151,-1.6857436,-1.6871701,-1.6885948,-1.6900176,-1.6914384,-1.6928575,-1.6942747,-1.6956899,-1.6971034,-1.6985148,-1.6999245,-1.7013323,-1.7027383,-1.7041423,-1.7055446,-1.7069451,-1.7083436,-1.7097404,-1.7111354,-1.7125285,-1.7139196,-1.7153093,-1.7166969,-1.7180829,-1.7194669,-1.7208492,-1.7222297,-1.7236084,-1.7249852,-1.7263604,-1.7277339,-1.7291055,-1.7304753,-1.7318434,-1.7332097,-1.7345743,-1.7359371,-1.7372983,-1.7386576,-1.7400153,-1.7413712,-1.7427253,-1.7440777,-1.7454284,-1.7467774,-1.7481247,-1.7494702,-1.7508142,-1.7521564,-1.7534968,-1.7548357,-1.7561728,-1.7575082,-1.758842,-1.760174,-1.7615045,-1.7628332,-1.7641603,-1.7654858,-1.7668095,-1.7681316,-1.7694521,-1.7707709,-1.7720882,-1.7734036,-1.7747176,-1.77603,-1.7773405,-1.7786496,-1.779957,-1.7812628,-1.782567,-1.7838696,-1.7851707,-1.78647,-1.7877679,-1.789064,-1.7903588,-1.7916517,-1.7929434,-1.7942332,-1.7955215,-1.7968082,-1.7980934,-1.799377,-1.8006591,-1.8019396,-1.8032186,-1.804496,-1.8057718,-1.8070463,-1.808319,-1.8095902,-1.81086,-1.8121282,-1.8133949,-1.8146601,-1.8159237,-1.8171859,-1.8184465],"x":[-1.0,-1.00398406374502,-1.0079681274900398,-1.0119521912350598,-1.0159362549800797,-1.0199203187250996,-1.0239043824701195,-1.0278884462151394,-1.0318725099601593,-1.0358565737051793,-1.0398406374501992,-1.043824701195219,-1.047808764940239,-1.051792828685259,-1.0557768924302788,-1.0597609561752988,-1.0637450199203187,-1.0677290836653386,-1.0717131474103585,-1.0756972111553784,-1.0796812749003983,-1.0836653386454183,-1.0876494023904382,-1.091633466135458,-1.095617529880478,-1.099601593625498,-1.1035856573705178,-1.1075697211155378,-1.1115537848605577,-1.1155378486055776,-1.1195219123505975,-1.1235059760956174,-1.1274900398406376,-1.1314741035856575,-1.1354581673306774,-1.1394422310756973,-1.1434262948207172,-1.1474103585657371,-1.151394422310757,-1.155378486055777,-1.159362549800797,-1.1633466135458168,-1.1673306772908367,-1.1713147410358566,-1.1752988047808766,-1.1792828685258965,-1.1832669322709164,-1.1872509960159363,-1.1912350597609562,-1.1952191235059761,-1.199203187250996,-1.203187250996016,-1.207171314741036,-1.2111553784860558,-1.2151394422310757,-1.2191235059760956,-1.2231075697211156,-1.2270916334661355,-1.2310756972111554,-1.2350597609561753,-1.2390438247011952,-1.2430278884462151,-1.247011952191235,-1.250996015936255,-1.254980079681275,-1.2589641434262948,-1.2629482071713147,-1.2669322709163346,-1.2709163346613546,-1.2749003984063745,-1.2788844621513944,-1.2828685258964143,-1.2868525896414342,-1.2908366533864541,-1.294820717131474,-1.298804780876494,-1.302788844621514,-1.3067729083665338,-1.3107569721115537,-1.3147410358565736,-1.3187250996015936,-1.3227091633466135,-1.3266932270916334,-1.3306772908366533,-1.3346613545816732,-1.3386454183266931,-1.342629482071713,-1.346613545816733,-1.350597609561753,-1.3545816733067728,-1.3585657370517927,-1.3625498007968126,-1.3665338645418326,-1.3705179282868525,-1.3745019920318724,-1.3784860557768925,-1.3824701195219125,-1.3864541832669324,-1.3904382470119523,-1.3944223107569722,-1.3984063745019921,-1.402390438247012,-1.406374501992032,-1.4103585657370519,-1.4143426294820718,-1.4183266932270917,-1.4223107569721116,-1.4262948207171315,-1.4302788844621515,-1.4342629482071714,-1.4382470119521913,-1.4422310756972112,-1.4462151394422311,-1.450199203187251,-1.454183266932271,-1.4581673306772909,-1.4621513944223108,-1.4661354581673307,-1.4701195219123506,-1.4741035856573705,-1.4780876494023905,-1.4820717131474104,-1.4860557768924303,-1.4900398406374502,-1.4940239043824701,-1.49800796812749,-1.50199203187251,-1.5059760956175299,-1.5099601593625498,-1.5139442231075697,-1.5179282868525896,-1.5219123505976095,-1.5258964143426295,-1.5298804780876494,-1.5338645418326693,-1.5378486055776892,-1.5418326693227091,-1.545816733067729,-1.549800796812749,-1.5537848605577689,-1.5577689243027888,-1.5617529880478087,-1.5657370517928286,-1.5697211155378485,-1.5737051792828685,-1.5776892430278884,-1.5816733067729083,-1.5856573705179282,-1.5896414342629481,-1.593625498007968,-1.597609561752988,-1.6015936254980079,-1.6055776892430278,-1.6095617529880477,-1.6135458167330676,-1.6175298804780875,-1.6215139442231075,-1.6254980079681276,-1.6294820717131475,-1.6334661354581674,-1.6374501992031874,-1.6414342629482073,-1.6454183266932272,-1.649402390438247,-1.653386454183267,-1.657370517928287,-1.6613545816733069,-1.6653386454183268,-1.6693227091633467,-1.6733067729083666,-1.6772908366533865,-1.6812749003984064,-1.6852589641434264,-1.6892430278884463,-1.6932270916334662,-1.697211155378486,-1.701195219123506,-1.705179282868526,-1.7091633466135459,-1.7131474103585658,-1.7171314741035857,-1.7211155378486056,-1.7250996015936255,-1.7290836653386454,-1.7330677290836654,-1.7370517928286853,-1.7410358565737052,-1.745019920318725,-1.749003984063745,-1.752988047808765,-1.7569721115537849,-1.7609561752988048,-1.7649402390438247,-1.7689243027888446,-1.7729083665338645,-1.7768924302788844,-1.7808764940239044,-1.7848605577689243,-1.7888446215139442,-1.792828685258964,-1.796812749003984,-1.800796812749004,-1.8047808764940239,-1.8087649402390438,-1.8127490039840637,-1.8167330677290836,-1.8207171314741035,-1.8247011952191234,-1.8286852589641434,-1.8326693227091633,-1.8366533864541832,-1.840637450199203,-1.844621513944223,-1.848605577689243,-1.8525896414342629,-1.8565737051792828,-1.8605577689243027,-1.8645418326693226,-1.8685258964143425,-1.8725099601593624,-1.8764940239043826,-1.8804780876494025,-1.8844621513944224,-1.8884462151394423,-1.8924302788844622,-1.8964143426294822,-1.900398406374502,-1.904382470119522,-1.908366533864542,-1.9123505976095618,-1.9163346613545817,-1.9203187250996017,-1.9243027888446216,-1.9282868525896415,-1.9322709163346614,-1.9362549800796813,-1.9402390438247012,-1.9442231075697212,-1.948207171314741,-1.952191235059761,-1.956175298804781,-1.9601593625498008,-1.9641434262948207,-1.9681274900398407,-1.9721115537848606,-1.9760956175298805,-1.9800796812749004,-1.9840637450199203,-1.9880478087649402,-1.9920318725099602,-1.99601593625498,-2.0,-2.00398406374502,-2.00796812749004,-2.0119521912350598,-2.0159362549800797,-2.0199203187250996,-2.0239043824701195,-2.0278884462151394,-2.0318725099601593,-2.0358565737051793,-2.039840637450199,-2.043824701195219,-2.047808764940239,-2.051792828685259,-2.055776892430279,-2.0597609561752988,-2.0637450199203187,-2.0677290836653386,-2.0717131474103585,-2.0756972111553784,-2.0796812749003983,-2.0836653386454183,-2.087649402390438,-2.091633466135458,-2.095617529880478,-2.099601593625498,-2.103585657370518,-2.1075697211155378,-2.1115537848605577,-2.1155378486055776,-2.1195219123505975,-2.1235059760956174,-2.1274900398406373,-2.1314741035856573,-2.135458167330677,-2.139442231075697,-2.143426294820717,-2.147410358565737,-2.151394422310757,-2.1553784860557768,-2.1593625498007967,-2.1633466135458166,-2.1673306772908365,-2.1713147410358564,-2.1752988047808763,-2.1792828685258963,-2.183266932270916,-2.187250996015936,-2.191235059760956,-2.195219123505976,-2.199203187250996,-2.2031872509960158,-2.2071713147410357,-2.2111553784860556,-2.2151394422310755,-2.2191235059760954,-2.2231075697211153,-2.2270916334661353,-2.231075697211155,-2.235059760956175,-2.239043824701195,-2.243027888446215,-2.247011952191235,-2.250996015936255,-2.254980079681275,-2.258964143426295,-2.262948207171315,-2.266932270916335,-2.270916334661355,-2.2749003984063747,-2.2788844621513946,-2.2828685258964145,-2.2868525896414345,-2.2908366533864544,-2.2948207171314743,-2.298804780876494,-2.302788844621514,-2.306772908366534,-2.310756972111554,-2.314741035856574,-2.318725099601594,-2.3227091633466137,-2.3266932270916336,-2.3306772908366535,-2.3346613545816735,-2.3386454183266934,-2.3426294820717133,-2.346613545816733,-2.350597609561753,-2.354581673306773,-2.358565737051793,-2.362549800796813,-2.366533864541833,-2.3705179282868527,-2.3745019920318726,-2.3784860557768925,-2.3824701195219125,-2.3864541832669324,-2.3904382470119523,-2.394422310756972,-2.398406374501992,-2.402390438247012,-2.406374501992032,-2.410358565737052,-2.414342629482072,-2.4183266932270917,-2.4223107569721116,-2.4262948207171315,-2.4302788844621515,-2.4342629482071714,-2.4382470119521913,-2.442231075697211,-2.446215139442231,-2.450199203187251,-2.454183266932271,-2.458167330677291,-2.462151394422311,-2.4661354581673307,-2.4701195219123506,-2.4741035856573705,-2.4780876494023905,-2.4820717131474104,-2.4860557768924303,-2.49003984063745,-2.49402390438247,-2.49800796812749,-2.50199203187251,-2.50597609561753,-2.50996015936255,-2.5139442231075697,-2.5179282868525896,-2.5219123505976095,-2.5258964143426295,-2.5298804780876494,-2.5338645418326693,-2.537848605577689,-2.541832669322709,-2.545816733067729,-2.549800796812749,-2.553784860557769,-2.557768924302789,-2.5617529880478087,-2.5657370517928286,-2.5697211155378485,-2.5737051792828685,-2.5776892430278884,-2.5816733067729083,-2.585657370517928,-2.589641434262948,-2.593625498007968,-2.597609561752988,-2.601593625498008,-2.605577689243028,-2.6095617529880477,-2.6135458167330676,-2.6175298804780875,-2.6215139442231075,-2.6254980079681274,-2.6294820717131473,-2.633466135458167,-2.637450199203187,-2.641434262948207,-2.645418326693227,-2.649402390438247,-2.653386454183267,-2.6573705179282867,-2.6613545816733066,-2.6653386454183265,-2.6693227091633465,-2.6733067729083664,-2.6772908366533863,-2.681274900398406,-2.685258964143426,-2.689243027888446,-2.693227091633466,-2.697211155378486,-2.701195219123506,-2.7051792828685257,-2.7091633466135456,-2.7131474103585655,-2.7171314741035855,-2.7211155378486054,-2.7250996015936253,-2.729083665338645,-2.733067729083665,-2.737051792828685,-2.741035856573705,-2.745019920318725,-2.749003984063745,-2.752988047808765,-2.756972111553785,-2.760956175298805,-2.764940239043825,-2.768924302788845,-2.7729083665338647,-2.7768924302788847,-2.7808764940239046,-2.7848605577689245,-2.7888446215139444,-2.7928286852589643,-2.7968127490039842,-2.800796812749004,-2.804780876494024,-2.808764940239044,-2.812749003984064,-2.816733067729084,-2.8207171314741037,-2.8247011952191237,-2.8286852589641436,-2.8326693227091635,-2.8366533864541834,-2.8406374501992033,-2.8446215139442232,-2.848605577689243,-2.852589641434263,-2.856573705179283,-2.860557768924303,-2.864541832669323,-2.8685258964143427,-2.8725099601593627,-2.8764940239043826,-2.8804780876494025,-2.8844621513944224,-2.8884462151394423,-2.8924302788844622,-2.896414342629482,-2.900398406374502,-2.904382470119522,-2.908366533864542,-2.912350597609562,-2.9163346613545817,-2.9203187250996017,-2.9243027888446216,-2.9282868525896415,-2.9322709163346614,-2.9362549800796813,-2.9402390438247012,-2.944223107569721,-2.948207171314741,-2.952191235059761,-2.956175298804781,-2.960159362549801,-2.9641434262948207,-2.9681274900398407,-2.9721115537848606,-2.9760956175298805,-2.9800796812749004,-2.9840637450199203,-2.9880478087649402,-2.99203187250996,-2.99601593625498,-3.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/medium_positive.json
new file mode 100644
index 000000000000..296193b1f53b
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/medium_positive.json
@@ -0,0 +1 @@
+{"expected":[0.8813736,0.884188,0.8869967,0.88979983,0.89259744,0.8953895,0.8981759,0.90095687,0.90373224,0.9065021,0.9092664,0.91202533,0.9147787,0.91752666,0.920269,0.92300606,0.9257376,0.92846376,0.9311844,0.9338997,0.9366097,0.9393143,0.9420134,0.9447073,0.94739574,0.95007896,0.9527567,0.9554293,0.95809656,0.96075857,0.9634152,0.96606666,0.96871287,0.9713539,0.97398967,0.9766202,0.9792456,0.9818658,0.9844808,0.9870907,0.9896955,0.9922951,0.99488956,0.9974789,1.0000633,1.0026425,1.0052166,1.0077858,1.0103499,1.0129089,1.0154629,1.0180119,1.020556,1.0230951,1.0256292,1.0281583,1.0306826,1.0332019,1.0357163,1.0382258,1.0407305,1.0432302,1.045725,1.048215,1.0507003,1.0531807,1.0556562,1.0581269,1.060593,1.0630542,1.0655106,1.0679624,1.0704094,1.0728518,1.0752892,1.0777221,1.0801504,1.0825739,1.0849926,1.0874069,1.0898166,1.0922215,1.0946218,1.0970176,1.0994089,1.1017956,1.1041775,1.1065551,1.1089281,1.1112965,1.1136606,1.1160201,1.1183751,1.1207256,1.1230718,1.1254133,1.1277506,1.1300834,1.1324117,1.1347357,1.1370554,1.1393707,1.1416816,1.1439881,1.1462903,1.1485883,1.1508818,1.1531712,1.1554562,1.157737,1.1600134,1.1622857,1.1645536,1.1668174,1.1690769,1.1713324,1.1735836,1.1758306,1.1780734,1.1803122,1.1825466,1.1847771,1.1870034,1.1892256,1.1914437,1.1936578,1.1958678,1.1980736,1.2002754,1.2024733,1.2046671,1.2068568,1.2090427,1.2112246,1.2134023,1.215576,1.2177461,1.219912,1.2220739,1.2242321,1.2263864,1.2285367,1.230683,1.2328255,1.2349643,1.237099,1.23923,1.2413571,1.2434804,1.2456,1.2477157,1.2498276,1.2519358,1.2540402,1.2561407,1.2582377,1.2603309,1.2624203,1.264506,1.266588,1.2686664,1.2707411,1.272812,1.2748793,1.276943,1.279003,1.2810594,1.2831122,1.2851614,1.287207,1.289249,1.2912874,1.2933223,1.2953535,1.2973813,1.2994056,1.3014263,1.3034436,1.3054572,1.3074673,1.3094741,1.3114773,1.313477,1.3154733,1.3174663,1.3194557,1.3214418,1.3234242,1.3254036,1.3273793,1.3293518,1.3313208,1.3332864,1.3352488,1.3372077,1.3391634,1.3411157,1.3430647,1.3450104,1.3469527,1.3488919,1.3508277,1.3527602,1.3546895,1.3566155,1.3585383,1.3604578,1.3623742,1.3642873,1.3661972,1.3681039,1.3700074,1.3719078,1.3738049,1.3756989,1.3775898,1.3794776,1.3813622,1.3832436,1.385122,1.3869972,1.3888694,1.3907384,1.3926044,1.3944674,1.3963271,1.398184,1.4000376,1.4018884,1.4037361,1.4055806,1.4074223,1.409261,1.4110966,1.4129292,1.4147589,1.4165856,1.4184093,1.4202302,1.422048,1.4238629,1.4256749,1.4274839,1.4292902,1.4310933,1.4328938,1.4346911,1.4364858,1.4382775,1.4400663,1.4418523,1.4436355,1.4454157,1.4471933,1.4489679,1.4507397,1.4525088,1.454275,1.4560385,1.4577991,1.4595569,1.461312,1.4630644,1.464814,1.466561,1.468305,1.4700464,1.4717851,1.4735209,1.4752542,1.4769846,1.4787124,1.4804376,1.4821601,1.4838799,1.485597,1.4873115,1.4890234,1.4907326,1.492439,1.494143,1.4958444,1.497543,1.4992391,1.5009326,1.5026234,1.5043118,1.5059974,1.5076807,1.5093611,1.5110393,1.5127147,1.5143876,1.5160581,1.5177258,1.5193912,1.5210541,1.5227144,1.5243722,1.5260276,1.5276804,1.5293307,1.5309786,1.5326239,1.534267,1.5359075,1.5375456,1.5391811,1.5408142,1.5424451,1.5440732,1.5456991,1.5473228,1.5489438,1.5505625,1.5521787,1.5537925,1.5554041,1.5570133,1.5586201,1.5602245,1.5618266,1.5634264,1.5650237,1.5666187,1.5682114,1.5698019,1.5713899,1.5729758,1.5745592,1.5761404,1.5777192,1.5792958,1.5808702,1.5824422,1.584012,1.5855796,1.5871447,1.5887078,1.5902685,1.591827,1.5933833,1.5949374,1.5964893,1.5980389,1.5995864,1.6011317,1.6026746,1.6042154,1.605754,1.6072905,1.6088248,1.6103569,1.6118869,1.6134148,1.6149403,1.6164638,1.6179852,1.6195043,1.6210214,1.6225364,1.6240493,1.62556,1.6270685,1.6285751,1.6300795,1.6315819,1.633082,1.6345801,1.6360762,1.6375703,1.6390622,1.640552,1.64204,1.6435257,1.6450094,1.6464912,1.6479707,1.6494484,1.650924,1.6523974,1.6538692,1.6553385,1.6568061,1.6582717,1.6597352,1.6611967,1.6626564,1.6641139,1.6655695,1.6670232,1.6684748,1.6699246,1.6713723,1.6728182,1.674262,1.6757039,1.6771439,1.6785821,1.6800181,1.6814524,1.6828847,1.6843151,1.6857436,1.6871701,1.6885948,1.6900176,1.6914384,1.6928575,1.6942747,1.6956899,1.6971034,1.6985148,1.6999245,1.7013323,1.7027383,1.7041423,1.7055446,1.7069451,1.7083436,1.7097404,1.7111354,1.7125285,1.7139196,1.7153093,1.7166969,1.7180829,1.7194669,1.7208492,1.7222297,1.7236084,1.7249852,1.7263604,1.7277339,1.7291055,1.7304753,1.7318434,1.7332097,1.7345743,1.7359371,1.7372983,1.7386576,1.7400153,1.7413712,1.7427253,1.7440777,1.7454284,1.7467774,1.7481247,1.7494702,1.7508142,1.7521564,1.7534968,1.7548357,1.7561728,1.7575082,1.758842,1.760174,1.7615045,1.7628332,1.7641603,1.7654858,1.7668095,1.7681316,1.7694521,1.7707709,1.7720882,1.7734036,1.7747176,1.77603,1.7773405,1.7786496,1.779957,1.7812628,1.782567,1.7838696,1.7851707,1.78647,1.7877679,1.789064,1.7903588,1.7916517,1.7929434,1.7942332,1.7955215,1.7968082,1.7980934,1.799377,1.8006591,1.8019396,1.8032186,1.804496,1.8057718,1.8070463,1.808319,1.8095902,1.81086,1.8121282,1.8133949,1.8146601,1.8159237,1.8171859,1.8184465],"x":[1.0,1.00398406374502,1.0079681274900398,1.0119521912350598,1.0159362549800797,1.0199203187250996,1.0239043824701195,1.0278884462151394,1.0318725099601593,1.0358565737051793,1.0398406374501992,1.043824701195219,1.047808764940239,1.051792828685259,1.0557768924302788,1.0597609561752988,1.0637450199203187,1.0677290836653386,1.0717131474103585,1.0756972111553784,1.0796812749003983,1.0836653386454183,1.0876494023904382,1.091633466135458,1.095617529880478,1.099601593625498,1.1035856573705178,1.1075697211155378,1.1115537848605577,1.1155378486055776,1.1195219123505975,1.1235059760956174,1.1274900398406376,1.1314741035856575,1.1354581673306774,1.1394422310756973,1.1434262948207172,1.1474103585657371,1.151394422310757,1.155378486055777,1.159362549800797,1.1633466135458168,1.1673306772908367,1.1713147410358566,1.1752988047808766,1.1792828685258965,1.1832669322709164,1.1872509960159363,1.1912350597609562,1.1952191235059761,1.199203187250996,1.203187250996016,1.207171314741036,1.2111553784860558,1.2151394422310757,1.2191235059760956,1.2231075697211156,1.2270916334661355,1.2310756972111554,1.2350597609561753,1.2390438247011952,1.2430278884462151,1.247011952191235,1.250996015936255,1.254980079681275,1.2589641434262948,1.2629482071713147,1.2669322709163346,1.2709163346613546,1.2749003984063745,1.2788844621513944,1.2828685258964143,1.2868525896414342,1.2908366533864541,1.294820717131474,1.298804780876494,1.302788844621514,1.3067729083665338,1.3107569721115537,1.3147410358565736,1.3187250996015936,1.3227091633466135,1.3266932270916334,1.3306772908366533,1.3346613545816732,1.3386454183266931,1.342629482071713,1.346613545816733,1.350597609561753,1.3545816733067728,1.3585657370517927,1.3625498007968126,1.3665338645418326,1.3705179282868525,1.3745019920318724,1.3784860557768925,1.3824701195219125,1.3864541832669324,1.3904382470119523,1.3944223107569722,1.3984063745019921,1.402390438247012,1.406374501992032,1.4103585657370519,1.4143426294820718,1.4183266932270917,1.4223107569721116,1.4262948207171315,1.4302788844621515,1.4342629482071714,1.4382470119521913,1.4422310756972112,1.4462151394422311,1.450199203187251,1.454183266932271,1.4581673306772909,1.4621513944223108,1.4661354581673307,1.4701195219123506,1.4741035856573705,1.4780876494023905,1.4820717131474104,1.4860557768924303,1.4900398406374502,1.4940239043824701,1.49800796812749,1.50199203187251,1.5059760956175299,1.5099601593625498,1.5139442231075697,1.5179282868525896,1.5219123505976095,1.5258964143426295,1.5298804780876494,1.5338645418326693,1.5378486055776892,1.5418326693227091,1.545816733067729,1.549800796812749,1.5537848605577689,1.5577689243027888,1.5617529880478087,1.5657370517928286,1.5697211155378485,1.5737051792828685,1.5776892430278884,1.5816733067729083,1.5856573705179282,1.5896414342629481,1.593625498007968,1.597609561752988,1.6015936254980079,1.6055776892430278,1.6095617529880477,1.6135458167330676,1.6175298804780875,1.6215139442231075,1.6254980079681276,1.6294820717131475,1.6334661354581674,1.6374501992031874,1.6414342629482073,1.6454183266932272,1.649402390438247,1.653386454183267,1.657370517928287,1.6613545816733069,1.6653386454183268,1.6693227091633467,1.6733067729083666,1.6772908366533865,1.6812749003984064,1.6852589641434264,1.6892430278884463,1.6932270916334662,1.697211155378486,1.701195219123506,1.705179282868526,1.7091633466135459,1.7131474103585658,1.7171314741035857,1.7211155378486056,1.7250996015936255,1.7290836653386454,1.7330677290836654,1.7370517928286853,1.7410358565737052,1.745019920318725,1.749003984063745,1.752988047808765,1.7569721115537849,1.7609561752988048,1.7649402390438247,1.7689243027888446,1.7729083665338645,1.7768924302788844,1.7808764940239044,1.7848605577689243,1.7888446215139442,1.792828685258964,1.796812749003984,1.800796812749004,1.8047808764940239,1.8087649402390438,1.8127490039840637,1.8167330677290836,1.8207171314741035,1.8247011952191234,1.8286852589641434,1.8326693227091633,1.8366533864541832,1.840637450199203,1.844621513944223,1.848605577689243,1.8525896414342629,1.8565737051792828,1.8605577689243027,1.8645418326693226,1.8685258964143425,1.8725099601593624,1.8764940239043826,1.8804780876494025,1.8844621513944224,1.8884462151394423,1.8924302788844622,1.8964143426294822,1.900398406374502,1.904382470119522,1.908366533864542,1.9123505976095618,1.9163346613545817,1.9203187250996017,1.9243027888446216,1.9282868525896415,1.9322709163346614,1.9362549800796813,1.9402390438247012,1.9442231075697212,1.948207171314741,1.952191235059761,1.956175298804781,1.9601593625498008,1.9641434262948207,1.9681274900398407,1.9721115537848606,1.9760956175298805,1.9800796812749004,1.9840637450199203,1.9880478087649402,1.9920318725099602,1.99601593625498,2.0,2.00398406374502,2.00796812749004,2.0119521912350598,2.0159362549800797,2.0199203187250996,2.0239043824701195,2.0278884462151394,2.0318725099601593,2.0358565737051793,2.039840637450199,2.043824701195219,2.047808764940239,2.051792828685259,2.055776892430279,2.0597609561752988,2.0637450199203187,2.0677290836653386,2.0717131474103585,2.0756972111553784,2.0796812749003983,2.0836653386454183,2.087649402390438,2.091633466135458,2.095617529880478,2.099601593625498,2.103585657370518,2.1075697211155378,2.1115537848605577,2.1155378486055776,2.1195219123505975,2.1235059760956174,2.1274900398406373,2.1314741035856573,2.135458167330677,2.139442231075697,2.143426294820717,2.147410358565737,2.151394422310757,2.1553784860557768,2.1593625498007967,2.1633466135458166,2.1673306772908365,2.1713147410358564,2.1752988047808763,2.1792828685258963,2.183266932270916,2.187250996015936,2.191235059760956,2.195219123505976,2.199203187250996,2.2031872509960158,2.2071713147410357,2.2111553784860556,2.2151394422310755,2.2191235059760954,2.2231075697211153,2.2270916334661353,2.231075697211155,2.235059760956175,2.239043824701195,2.243027888446215,2.247011952191235,2.250996015936255,2.254980079681275,2.258964143426295,2.262948207171315,2.266932270916335,2.270916334661355,2.2749003984063747,2.2788844621513946,2.2828685258964145,2.2868525896414345,2.2908366533864544,2.2948207171314743,2.298804780876494,2.302788844621514,2.306772908366534,2.310756972111554,2.314741035856574,2.318725099601594,2.3227091633466137,2.3266932270916336,2.3306772908366535,2.3346613545816735,2.3386454183266934,2.3426294820717133,2.346613545816733,2.350597609561753,2.354581673306773,2.358565737051793,2.362549800796813,2.366533864541833,2.3705179282868527,2.3745019920318726,2.3784860557768925,2.3824701195219125,2.3864541832669324,2.3904382470119523,2.394422310756972,2.398406374501992,2.402390438247012,2.406374501992032,2.410358565737052,2.414342629482072,2.4183266932270917,2.4223107569721116,2.4262948207171315,2.4302788844621515,2.4342629482071714,2.4382470119521913,2.442231075697211,2.446215139442231,2.450199203187251,2.454183266932271,2.458167330677291,2.462151394422311,2.4661354581673307,2.4701195219123506,2.4741035856573705,2.4780876494023905,2.4820717131474104,2.4860557768924303,2.49003984063745,2.49402390438247,2.49800796812749,2.50199203187251,2.50597609561753,2.50996015936255,2.5139442231075697,2.5179282868525896,2.5219123505976095,2.5258964143426295,2.5298804780876494,2.5338645418326693,2.537848605577689,2.541832669322709,2.545816733067729,2.549800796812749,2.553784860557769,2.557768924302789,2.5617529880478087,2.5657370517928286,2.5697211155378485,2.5737051792828685,2.5776892430278884,2.5816733067729083,2.585657370517928,2.589641434262948,2.593625498007968,2.597609561752988,2.601593625498008,2.605577689243028,2.6095617529880477,2.6135458167330676,2.6175298804780875,2.6215139442231075,2.6254980079681274,2.6294820717131473,2.633466135458167,2.637450199203187,2.641434262948207,2.645418326693227,2.649402390438247,2.653386454183267,2.6573705179282867,2.6613545816733066,2.6653386454183265,2.6693227091633465,2.6733067729083664,2.6772908366533863,2.681274900398406,2.685258964143426,2.689243027888446,2.693227091633466,2.697211155378486,2.701195219123506,2.7051792828685257,2.7091633466135456,2.7131474103585655,2.7171314741035855,2.7211155378486054,2.7250996015936253,2.729083665338645,2.733067729083665,2.737051792828685,2.741035856573705,2.745019920318725,2.749003984063745,2.752988047808765,2.756972111553785,2.760956175298805,2.764940239043825,2.768924302788845,2.7729083665338647,2.7768924302788847,2.7808764940239046,2.7848605577689245,2.7888446215139444,2.7928286852589643,2.7968127490039842,2.800796812749004,2.804780876494024,2.808764940239044,2.812749003984064,2.816733067729084,2.8207171314741037,2.8247011952191237,2.8286852589641436,2.8326693227091635,2.8366533864541834,2.8406374501992033,2.8446215139442232,2.848605577689243,2.852589641434263,2.856573705179283,2.860557768924303,2.864541832669323,2.8685258964143427,2.8725099601593627,2.8764940239043826,2.8804780876494025,2.8844621513944224,2.8884462151394423,2.8924302788844622,2.896414342629482,2.900398406374502,2.904382470119522,2.908366533864542,2.912350597609562,2.9163346613545817,2.9203187250996017,2.9243027888446216,2.9282868525896415,2.9322709163346614,2.9362549800796813,2.9402390438247012,2.944223107569721,2.948207171314741,2.952191235059761,2.956175298804781,2.960159362549801,2.9641434262948207,2.9681274900398407,2.9721115537848606,2.9760956175298805,2.9800796812749004,2.9840637450199203,2.9880478087649402,2.99203187250996,2.99601593625498,3.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/runner.jl
new file mode 100755
index 000000000000..286c72822564
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/runner.jl
@@ -0,0 +1,94 @@
+#!/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( domain, name )
+Generate fixture data and write to file.
+# Arguments
+* `domain`: domain
+* `name::AbstractString`: output filename
+# Examples
+
+``` julia
+julia> x = range( -1000, stop = 1000, length = 2001 );
+julia> gen( x, \"data.json\" );
+```
+"""
+function gen( domain, name )
+ x = collect( domain );
+ y = Float32.( asinh.( Float32.( x ) ) );
+
+ # 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 );
+
+# Small(er) values:
+x = range( -0.8, stop = 0.8, length = 503 );
+gen( x, "smaller.json" );
+
+# Negative small values:
+x = range( -0.8, stop = -1.0, length = 503 );
+gen( x, "small_negative.json" );
+
+# Positive small values:
+x = range( 0.8, stop = 1.0, length = 503 );
+gen( x, "small_positive.json" );
+
+# Negative medium values:
+x = range( -1.0, stop = -3.0, length = 503 );
+gen( x, "medium_negative.json" );
+
+# Positive medium values:
+x = range( 1.0, stop = 3.0, length = 503 );
+gen( x, "medium_positive.json" );
+
+# Large negative values:
+x = range( -3.0, stop = -28.0, length = 503 );
+gen( x, "large_negative.json" );
+
+# Large positive values:
+x = range( 3.0, stop = 28.0, length = 503 );
+gen( x, "large_positive.json" );
+
+# Larger negative values:
+x = range( -28.0, stop = -100.0, length = 503 );
+gen( x, "larger_negative.json" );
+
+# Larger positive values:
+x = range( 28.0, stop = 100.0, length = 503 );
+gen( x, "larger_positive.json" );
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/small_negative.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/small_negative.json
new file mode 100644
index 000000000000..ae1386ef9cb2
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/small_negative.json
@@ -0,0 +1 @@
+{"expected":[-0.7326682,-0.7329793,-0.7332903,-0.7336013,-0.73391217,-0.73422307,-0.7345338,-0.7348445,-0.73515517,-0.7354657,-0.73577625,-0.73608667,-0.73639715,-0.7367075,-0.73701775,-0.737328,-0.7376382,-0.7379483,-0.7382583,-0.73856837,-0.73887825,-0.7391881,-0.7394979,-0.73980767,-0.7401173,-0.74042696,-0.74073654,-0.741046,-0.7413555,-0.7416648,-0.7419742,-0.7422834,-0.74259263,-0.74290174,-0.7432109,-0.7435199,-0.74382883,-0.74413776,-0.7444465,-0.7447553,-0.7450641,-0.7453727,-0.74568135,-0.74598986,-0.7462983,-0.74660677,-0.7469151,-0.7472234,-0.74753165,-0.7478398,-0.7481479,-0.748456,-0.74876404,-0.74907196,-0.7493798,-0.7496876,-0.74999535,-0.75030303,-0.7506107,-0.7509183,-0.75122577,-0.75153327,-0.75184065,-0.75214803,-0.75245523,-0.75276256,-0.75306964,-0.7533767,-0.7536838,-0.7539907,-0.7542976,-0.7546045,-0.7549113,-0.7552181,-0.7555247,-0.7558313,-0.75613785,-0.75644433,-0.75675076,-0.7570572,-0.7573635,-0.75766975,-0.75797594,-0.758282,-0.75858814,-0.7588942,-0.75920016,-0.759506,-0.7598119,-0.76011765,-0.76042336,-0.76072896,-0.76103455,-0.7613402,-0.7616456,-0.761951,-0.7622564,-0.7625617,-0.7628669,-0.7631721,-0.76347715,-0.76378226,-0.7640872,-0.7643922,-0.7646971,-0.7650019,-0.76530665,-0.7656113,-0.76591593,-0.7662205,-0.76652503,-0.7668295,-0.76713395,-0.7674383,-0.7677425,-0.76804674,-0.7683509,-0.76865494,-0.768959,-0.7692631,-0.76956695,-0.7698708,-0.7701746,-0.7704783,-0.770782,-0.7710856,-0.77138925,-0.7716927,-0.77199614,-0.7722995,-0.7726028,-0.77290606,-0.77320933,-0.7735125,-0.7738155,-0.77411854,-0.7744216,-0.7747244,-0.7750273,-0.7753301,-0.7756328,-0.7759355,-0.7762381,-0.77654064,-0.7768431,-0.7771456,-0.77744794,-0.7777502,-0.7780525,-0.7783547,-0.7786568,-0.77895886,-0.77926093,-0.77956283,-0.7798647,-0.78016657,-0.78046834,-0.78077,-0.7810717,-0.7813733,-0.78167486,-0.7819763,-0.7822777,-0.7825791,-0.78288037,-0.78318167,-0.78348285,-0.7837839,-0.784085,-0.78438604,-0.7846869,-0.7849878,-0.78528863,-0.78558946,-0.7858901,-0.78619075,-0.78649133,-0.78679186,-0.7870923,-0.78739274,-0.7876931,-0.7879934,-0.7882936,-0.7885938,-0.78889394,-0.789194,-0.789494,-0.7897939,-0.7900938,-0.7903936,-0.7906933,-0.790993,-0.7912927,-0.7915923,-0.7918918,-0.79219127,-0.79249066,-0.79278994,-0.7930893,-0.7933885,-0.7936877,-0.79398674,-0.79428583,-0.7945848,-0.7948837,-0.7951826,-0.79548144,-0.7957802,-0.79607886,-0.79637754,-0.79667604,-0.7969746,-0.79727304,-0.7975714,-0.7978698,-0.79816806,-0.79846627,-0.79876447,-0.79906255,-0.79936063,-0.7996586,-0.7999565,-0.80025434,-0.8005522,-0.8008499,-0.80114764,-0.80144525,-0.80174285,-0.80204034,-0.80233777,-0.8026352,-0.8029325,-0.8032298,-0.80352706,-0.8038242,-0.80412126,-0.8044183,-0.8047153,-0.8050122,-0.8053091,-0.8056059,-0.80590266,-0.8061994,-0.80649596,-0.80679256,-0.80708915,-0.80738556,-0.8076819,-0.8079783,-0.8082745,-0.8085708,-0.80886686,-0.8091631,-0.8094591,-0.8097551,-0.810051,-0.8103469,-0.8106427,-0.8109384,-0.8112342,-0.8115298,-0.81182534,-0.81212085,-0.8124163,-0.81271166,-0.813007,-0.81330234,-0.81359756,-0.8138927,-0.8141878,-0.81448287,-0.81477785,-0.81507283,-0.8153677,-0.8156625,-0.81595725,-0.81625193,-0.8165466,-0.8168412,-0.8171357,-0.81743014,-0.8177246,-0.8180189,-0.8183132,-0.8186074,-0.8189016,-0.81919575,-0.8194898,-0.81978375,-0.8200777,-0.8203716,-0.8206654,-0.8209592,-0.82125294,-0.82154655,-0.8218401,-0.82213366,-0.8224271,-0.8227205,-0.8230139,-0.8233072,-0.8236005,-0.8238936,-0.82418674,-0.82447976,-0.82477283,-0.8250658,-0.8253587,-0.82565147,-0.8259443,-0.82623696,-0.8265297,-0.8268222,-0.8271148,-0.82740724,-0.82769966,-0.827992,-0.8282843,-0.82857656,-0.8288688,-0.829161,-0.82945305,-0.82974505,-0.830037,-0.83032894,-0.83062077,-0.8309126,-0.8312043,-0.831496,-0.8317876,-0.8320791,-0.83237064,-0.8326621,-0.83295345,-0.8332448,-0.833536,-0.83382726,-0.8341184,-0.8344095,-0.8347006,-0.8349915,-0.83528244,-0.8355733,-0.8358641,-0.8361548,-0.8364455,-0.83673614,-0.8370268,-0.8373173,-0.8376077,-0.8378981,-0.83818847,-0.8384788,-0.83876896,-0.8390591,-0.83934927,-0.8396393,-0.8399293,-0.8402192,-0.8405091,-0.8407989,-0.8410887,-0.8413784,-0.84166807,-0.8419576,-0.8422472,-0.8425367,-0.84282607,-0.84311545,-0.84340477,-0.843694,-0.8439832,-0.8442723,-0.8445614,-0.8448504,-0.8451394,-0.8454282,-0.8457171,-0.84600586,-0.84629464,-0.84658337,-0.846872,-0.84716046,-0.84744895,-0.84773743,-0.8480258,-0.84831417,-0.8486024,-0.8488906,-0.8491788,-0.84946686,-0.84975487,-0.8500429,-0.8503308,-0.8506187,-0.8509065,-0.85119426,-0.8514819,-0.8517696,-0.85205716,-0.8523447,-0.85263216,-0.8529196,-0.85320693,-0.8534942,-0.85378146,-0.85406864,-0.8543558,-0.8546428,-0.85492986,-0.8552168,-0.85550374,-0.85579056,-0.8560774,-0.8563641,-0.8566507,-0.8569373,-0.85722387,-0.8575103,-0.85779685,-0.85808325,-0.8583696,-0.8586558,-0.858942,-0.85922813,-0.85951424,-0.85980034,-0.86008626,-0.86037225,-0.86065805,-0.86094385,-0.86122966,-0.8615154,-0.86180097,-0.8620866,-0.8623721,-0.8626576,-0.862943,-0.8632283,-0.86351365,-0.8637989,-0.8640841,-0.8643692,-0.86465424,-0.86493933,-0.8652243,-0.86550915,-0.86579406,-0.8660788,-0.8663636,-0.86664826,-0.8669328,-0.8672174,-0.867502,-0.8677864,-0.8680708,-0.8683551,-0.86863935,-0.8689236,-0.8692078,-0.8694919,-0.86977595,-0.87005997,-0.87034386,-0.87062776,-0.87091154,-0.8711953,-0.8714791,-0.87176275,-0.87204635,-0.87232983,-0.8726134,-0.8728968,-0.8731802,-0.8734635,-0.87374675,-0.87403,-0.87431306,-0.8745962,-0.87487924,-0.87516224,-0.8754452,-0.875728,-0.87601084,-0.87629354,-0.8765763,-0.876859,-0.8771416,-0.87742406,-0.8777066,-0.87798893,-0.87827134,-0.8785536,-0.87883586,-0.8791181,-0.8794002,-0.8796823,-0.8799643,-0.8802463,-0.8805282,-0.8808101,-0.88109183,-0.8813736],"x":[-0.8,-0.800398406374502,-0.8007968127490039,-0.801195219123506,-0.801593625498008,-0.80199203187251,-0.802390438247012,-0.8027888446215139,-0.803187250996016,-0.8035856573705179,-0.80398406374502,-0.8043824701195219,-0.8047808764940239,-0.8051792828685259,-0.8055776892430279,-0.8059760956175299,-0.8063745019920319,-0.8067729083665338,-0.8071713147410359,-0.8075697211155378,-0.8079681274900399,-0.8083665338645418,-0.8087649402390438,-0.8091633466135458,-0.8095617529880478,-0.8099601593625498,-0.8103585657370518,-0.8107569721115537,-0.8111553784860558,-0.8115537848605577,-0.8119521912350598,-0.8123505976095617,-0.8127490039840638,-0.8131474103585657,-0.8135458167330677,-0.8139442231075698,-0.8143426294820717,-0.8147410358565738,-0.8151394422310757,-0.8155378486055777,-0.8159362549800797,-0.8163346613545817,-0.8167330677290837,-0.8171314741035857,-0.8175298804780876,-0.8179282868525897,-0.8183266932270916,-0.8187250996015937,-0.8191235059760956,-0.8195219123505976,-0.8199203187250996,-0.8203187250996016,-0.8207171314741036,-0.8211155378486056,-0.8215139442231075,-0.8219123505976096,-0.8223107569721115,-0.8227091633466136,-0.8231075697211155,-0.8235059760956175,-0.8239043824701195,-0.8243027888446215,-0.8247011952191236,-0.8250996015936255,-0.8254980079681274,-0.8258964143426295,-0.8262948207171315,-0.8266932270916335,-0.8270916334661355,-0.8274900398406374,-0.8278884462151395,-0.8282868525896414,-0.8286852589641435,-0.8290836653386454,-0.8294820717131474,-0.8298804780876494,-0.8302788844621514,-0.8306772908366534,-0.8310756972111554,-0.8314741035856573,-0.8318725099601594,-0.8322709163346613,-0.8326693227091634,-0.8330677290836653,-0.8334661354581673,-0.8338645418326693,-0.8342629482071713,-0.8346613545816733,-0.8350597609561753,-0.8354581673306772,-0.8358565737051793,-0.8362549800796812,-0.8366533864541833,-0.8370517928286852,-0.8374501992031872,-0.8378486055776893,-0.8382470119521912,-0.8386454183266933,-0.8390438247011952,-0.8394422310756973,-0.8398406374501992,-0.8402390438247012,-0.8406374501992032,-0.8410358565737052,-0.8414342629482072,-0.8418326693227092,-0.8422310756972111,-0.8426294820717132,-0.8430278884462151,-0.8434262948207172,-0.8438247011952191,-0.8442231075697211,-0.8446215139442231,-0.8450199203187251,-0.8454183266932271,-0.8458167330677291,-0.846215139442231,-0.8466135458167331,-0.847011952191235,-0.8474103585657371,-0.847808764940239,-0.848207171314741,-0.848605577689243,-0.849003984063745,-0.8494023904382471,-0.849800796812749,-0.850199203187251,-0.850597609561753,-0.850996015936255,-0.851394422310757,-0.851792828685259,-0.8521912350597609,-0.852589641434263,-0.8529880478087649,-0.853386454183267,-0.8537848605577689,-0.8541832669322709,-0.8545816733067729,-0.8549800796812749,-0.8553784860557769,-0.8557768924302789,-0.8561752988047808,-0.8565737051792829,-0.8569721115537848,-0.8573705179282869,-0.8577689243027888,-0.8581673306772908,-0.8585657370517928,-0.8589641434262948,-0.8593625498007968,-0.8597609561752988,-0.8601593625498007,-0.8605577689243028,-0.8609561752988047,-0.8613545816733068,-0.8617529880478088,-0.8621513944223107,-0.8625498007968128,-0.8629482071713147,-0.8633466135458168,-0.8637450199203187,-0.8641434262948208,-0.8645418326693227,-0.8649402390438247,-0.8653386454183267,-0.8657370517928287,-0.8661354581673307,-0.8665338645418327,-0.8669322709163346,-0.8673306772908367,-0.8677290836653386,-0.8681274900398407,-0.8685258964143426,-0.8689243027888446,-0.8693227091633466,-0.8697211155378486,-0.8701195219123506,-0.8705179282868526,-0.8709163346613545,-0.8713147410358566,-0.8717131474103585,-0.8721115537848606,-0.8725099601593626,-0.8729083665338645,-0.8733067729083666,-0.8737051792828685,-0.8741035856573706,-0.8745019920318725,-0.8749003984063745,-0.8752988047808765,-0.8756972111553785,-0.8760956175298805,-0.8764940239043825,-0.8768924302788844,-0.8772908366533865,-0.8776892430278884,-0.8780876494023905,-0.8784860557768924,-0.8788844621513944,-0.8792828685258964,-0.8796812749003984,-0.8800796812749004,-0.8804780876494024,-0.8808764940239043,-0.8812749003984064,-0.8816733067729083,-0.8820717131474104,-0.8824701195219123,-0.8828685258964143,-0.8832669322709163,-0.8836653386454183,-0.8840637450199204,-0.8844621513944223,-0.8848605577689242,-0.8852589641434263,-0.8856573705179283,-0.8860557768924303,-0.8864541832669323,-0.8868525896414342,-0.8872509960159363,-0.8876494023904382,-0.8880478087649403,-0.8884462151394422,-0.8888446215139443,-0.8892430278884462,-0.8896414342629482,-0.8900398406374502,-0.8904382470119522,-0.8908366533864542,-0.8912350597609562,-0.8916334661354581,-0.8920318725099602,-0.8924302788844621,-0.8928286852589642,-0.8932270916334661,-0.8936254980079681,-0.8940239043824701,-0.8944223107569721,-0.8948207171314742,-0.8952191235059761,-0.895617529880478,-0.8960159362549801,-0.896414342629482,-0.8968127490039841,-0.8972111553784861,-0.897609561752988,-0.8980079681274901,-0.898406374501992,-0.8988047808764941,-0.899203187250996,-0.899601593625498,-0.9,-0.900398406374502,-0.900796812749004,-0.901195219123506,-0.9015936254980079,-0.90199203187251,-0.9023904382470119,-0.902788844621514,-0.9031872509960159,-0.9035856573705179,-0.9039840637450199,-0.9043824701195219,-0.904780876494024,-0.9051792828685259,-0.9055776892430278,-0.9059760956175299,-0.9063745019920318,-0.9067729083665339,-0.9071713147410359,-0.9075697211155378,-0.9079681274900399,-0.9083665338645418,-0.9087649402390439,-0.9091633466135458,-0.9095617529880478,-0.9099601593625498,-0.9103585657370518,-0.9107569721115538,-0.9111553784860558,-0.9115537848605577,-0.9119521912350598,-0.9123505976095617,-0.9127490039840638,-0.9131474103585657,-0.9135458167330678,-0.9139442231075697,-0.9143426294820717,-0.9147410358565737,-0.9151394422310757,-0.9155378486055777,-0.9159362549800797,-0.9163346613545816,-0.9167330677290837,-0.9171314741035856,-0.9175298804780877,-0.9179282868525896,-0.9183266932270916,-0.9187250996015937,-0.9191235059760956,-0.9195219123505977,-0.9199203187250996,-0.9203187250996016,-0.9207171314741036,-0.9211155378486056,-0.9215139442231076,-0.9219123505976096,-0.9223107569721115,-0.9227091633466136,-0.9231075697211155,-0.9235059760956176,-0.9239043824701195,-0.9243027888446215,-0.9247011952191235,-0.9250996015936255,-0.9254980079681275,-0.9258964143426295,-0.9262948207171314,-0.9266932270916335,-0.9270916334661354,-0.9274900398406375,-0.9278884462151394,-0.9282868525896414,-0.9286852589641434,-0.9290836653386454,-0.9294820717131475,-0.9298804780876494,-0.9302788844621513,-0.9306772908366534,-0.9310756972111554,-0.9314741035856574,-0.9318725099601594,-0.9322709163346613,-0.9326693227091634,-0.9330677290836653,-0.9334661354581674,-0.9338645418326693,-0.9342629482071713,-0.9346613545816733,-0.9350597609561753,-0.9354581673306773,-0.9358565737051793,-0.9362549800796812,-0.9366533864541833,-0.9370517928286852,-0.9374501992031873,-0.9378486055776892,-0.9382470119521913,-0.9386454183266932,-0.9390438247011952,-0.9394422310756972,-0.9398406374501992,-0.9402390438247012,-0.9406374501992032,-0.9410358565737051,-0.9414342629482072,-0.9418326693227091,-0.9422310756972112,-0.9426294820717132,-0.9430278884462151,-0.9434262948207172,-0.9438247011952191,-0.9442231075697212,-0.9446215139442231,-0.9450199203187251,-0.9454183266932271,-0.9458167330677291,-0.9462151394422311,-0.9466135458167331,-0.947011952191235,-0.9474103585657371,-0.947808764940239,-0.9482071713147411,-0.948605577689243,-0.949003984063745,-0.949402390438247,-0.949800796812749,-0.950199203187251,-0.950597609561753,-0.9509960159362549,-0.951394422310757,-0.9517928286852589,-0.952191235059761,-0.952589641434263,-0.9529880478087649,-0.953386454183267,-0.9537848605577689,-0.954183266932271,-0.9545816733067729,-0.9549800796812749,-0.9553784860557769,-0.9557768924302789,-0.9561752988047809,-0.9565737051792829,-0.9569721115537848,-0.9573705179282869,-0.9577689243027888,-0.9581673306772909,-0.9585657370517928,-0.9589641434262948,-0.9593625498007968,-0.9597609561752988,-0.9601593625498008,-0.9605577689243028,-0.9609561752988047,-0.9613545816733068,-0.9617529880478087,-0.9621513944223108,-0.9625498007968127,-0.9629482071713148,-0.9633466135458167,-0.9637450199203187,-0.9641434262948207,-0.9645418326693227,-0.9649402390438248,-0.9653386454183267,-0.9657370517928286,-0.9661354581673307,-0.9665338645418327,-0.9669322709163347,-0.9673306772908367,-0.9677290836653386,-0.9681274900398407,-0.9685258964143426,-0.9689243027888447,-0.9693227091633466,-0.9697211155378486,-0.9701195219123506,-0.9705179282868526,-0.9709163346613546,-0.9713147410358566,-0.9717131474103585,-0.9721115537848606,-0.9725099601593625,-0.9729083665338646,-0.9733067729083665,-0.9737051792828685,-0.9741035856573705,-0.9745019920318725,-0.9749003984063745,-0.9752988047808765,-0.9756972111553784,-0.9760956175298805,-0.9764940239043824,-0.9768924302788845,-0.9772908366533865,-0.9776892430278884,-0.9780876494023905,-0.9784860557768924,-0.9788844621513945,-0.9792828685258964,-0.9796812749003984,-0.9800796812749004,-0.9804780876494024,-0.9808764940239044,-0.9812749003984064,-0.9816733067729083,-0.9820717131474104,-0.9824701195219123,-0.9828685258964144,-0.9832669322709163,-0.9836653386454183,-0.9840637450199203,-0.9844621513944223,-0.9848605577689243,-0.9852589641434263,-0.9856573705179282,-0.9860557768924303,-0.9864541832669322,-0.9868525896414343,-0.9872509960159362,-0.9876494023904383,-0.9880478087649402,-0.9884462151394422,-0.9888446215139443,-0.9892430278884462,-0.9896414342629483,-0.9900398406374502,-0.9904382470119522,-0.9908366533864542,-0.9912350597609562,-0.9916334661354582,-0.9920318725099602,-0.9924302788844621,-0.9928286852589642,-0.9932270916334661,-0.9936254980079682,-0.9940239043824701,-0.9944223107569721,-0.9948207171314741,-0.9952191235059761,-0.9956175298804781,-0.9960159362549801,-0.996414342629482,-0.9968127490039841,-0.997211155378486,-0.9976095617529881,-0.99800796812749,-0.998406374501992,-0.998804780876494,-0.999203187250996,-0.999601593625498,-1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/small_positive.json
new file mode 100644
index 000000000000..04da851695b5
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/small_positive.json
@@ -0,0 +1 @@
+{"expected":[0.7326682,0.7329793,0.7332903,0.7336013,0.73391217,0.73422307,0.7345338,0.7348445,0.73515517,0.7354657,0.73577625,0.73608667,0.73639715,0.7367075,0.73701775,0.737328,0.7376382,0.7379483,0.7382583,0.73856837,0.73887825,0.7391881,0.7394979,0.73980767,0.7401173,0.74042696,0.74073654,0.741046,0.7413555,0.7416648,0.7419742,0.7422834,0.74259263,0.74290174,0.7432109,0.7435199,0.74382883,0.74413776,0.7444465,0.7447553,0.7450641,0.7453727,0.74568135,0.74598986,0.7462983,0.74660677,0.7469151,0.7472234,0.74753165,0.7478398,0.7481479,0.748456,0.74876404,0.74907196,0.7493798,0.7496876,0.74999535,0.75030303,0.7506107,0.7509183,0.75122577,0.75153327,0.75184065,0.75214803,0.75245523,0.75276256,0.75306964,0.7533767,0.7536838,0.7539907,0.7542976,0.7546045,0.7549113,0.7552181,0.7555247,0.7558313,0.75613785,0.75644433,0.75675076,0.7570572,0.7573635,0.75766975,0.75797594,0.758282,0.75858814,0.7588942,0.75920016,0.759506,0.7598119,0.76011765,0.76042336,0.76072896,0.76103455,0.7613402,0.7616456,0.761951,0.7622564,0.7625617,0.7628669,0.7631721,0.76347715,0.76378226,0.7640872,0.7643922,0.7646971,0.7650019,0.76530665,0.7656113,0.76591593,0.7662205,0.76652503,0.7668295,0.76713395,0.7674383,0.7677425,0.76804674,0.7683509,0.76865494,0.768959,0.7692631,0.76956695,0.7698708,0.7701746,0.7704783,0.770782,0.7710856,0.77138925,0.7716927,0.77199614,0.7722995,0.7726028,0.77290606,0.77320933,0.7735125,0.7738155,0.77411854,0.7744216,0.7747244,0.7750273,0.7753301,0.7756328,0.7759355,0.7762381,0.77654064,0.7768431,0.7771456,0.77744794,0.7777502,0.7780525,0.7783547,0.7786568,0.77895886,0.77926093,0.77956283,0.7798647,0.78016657,0.78046834,0.78077,0.7810717,0.7813733,0.78167486,0.7819763,0.7822777,0.7825791,0.78288037,0.78318167,0.78348285,0.7837839,0.784085,0.78438604,0.7846869,0.7849878,0.78528863,0.78558946,0.7858901,0.78619075,0.78649133,0.78679186,0.7870923,0.78739274,0.7876931,0.7879934,0.7882936,0.7885938,0.78889394,0.789194,0.789494,0.7897939,0.7900938,0.7903936,0.7906933,0.790993,0.7912927,0.7915923,0.7918918,0.79219127,0.79249066,0.79278994,0.7930893,0.7933885,0.7936877,0.79398674,0.79428583,0.7945848,0.7948837,0.7951826,0.79548144,0.7957802,0.79607886,0.79637754,0.79667604,0.7969746,0.79727304,0.7975714,0.7978698,0.79816806,0.79846627,0.79876447,0.79906255,0.79936063,0.7996586,0.7999565,0.80025434,0.8005522,0.8008499,0.80114764,0.80144525,0.80174285,0.80204034,0.80233777,0.8026352,0.8029325,0.8032298,0.80352706,0.8038242,0.80412126,0.8044183,0.8047153,0.8050122,0.8053091,0.8056059,0.80590266,0.8061994,0.80649596,0.80679256,0.80708915,0.80738556,0.8076819,0.8079783,0.8082745,0.8085708,0.80886686,0.8091631,0.8094591,0.8097551,0.810051,0.8103469,0.8106427,0.8109384,0.8112342,0.8115298,0.81182534,0.81212085,0.8124163,0.81271166,0.813007,0.81330234,0.81359756,0.8138927,0.8141878,0.81448287,0.81477785,0.81507283,0.8153677,0.8156625,0.81595725,0.81625193,0.8165466,0.8168412,0.8171357,0.81743014,0.8177246,0.8180189,0.8183132,0.8186074,0.8189016,0.81919575,0.8194898,0.81978375,0.8200777,0.8203716,0.8206654,0.8209592,0.82125294,0.82154655,0.8218401,0.82213366,0.8224271,0.8227205,0.8230139,0.8233072,0.8236005,0.8238936,0.82418674,0.82447976,0.82477283,0.8250658,0.8253587,0.82565147,0.8259443,0.82623696,0.8265297,0.8268222,0.8271148,0.82740724,0.82769966,0.827992,0.8282843,0.82857656,0.8288688,0.829161,0.82945305,0.82974505,0.830037,0.83032894,0.83062077,0.8309126,0.8312043,0.831496,0.8317876,0.8320791,0.83237064,0.8326621,0.83295345,0.8332448,0.833536,0.83382726,0.8341184,0.8344095,0.8347006,0.8349915,0.83528244,0.8355733,0.8358641,0.8361548,0.8364455,0.83673614,0.8370268,0.8373173,0.8376077,0.8378981,0.83818847,0.8384788,0.83876896,0.8390591,0.83934927,0.8396393,0.8399293,0.8402192,0.8405091,0.8407989,0.8410887,0.8413784,0.84166807,0.8419576,0.8422472,0.8425367,0.84282607,0.84311545,0.84340477,0.843694,0.8439832,0.8442723,0.8445614,0.8448504,0.8451394,0.8454282,0.8457171,0.84600586,0.84629464,0.84658337,0.846872,0.84716046,0.84744895,0.84773743,0.8480258,0.84831417,0.8486024,0.8488906,0.8491788,0.84946686,0.84975487,0.8500429,0.8503308,0.8506187,0.8509065,0.85119426,0.8514819,0.8517696,0.85205716,0.8523447,0.85263216,0.8529196,0.85320693,0.8534942,0.85378146,0.85406864,0.8543558,0.8546428,0.85492986,0.8552168,0.85550374,0.85579056,0.8560774,0.8563641,0.8566507,0.8569373,0.85722387,0.8575103,0.85779685,0.85808325,0.8583696,0.8586558,0.858942,0.85922813,0.85951424,0.85980034,0.86008626,0.86037225,0.86065805,0.86094385,0.86122966,0.8615154,0.86180097,0.8620866,0.8623721,0.8626576,0.862943,0.8632283,0.86351365,0.8637989,0.8640841,0.8643692,0.86465424,0.86493933,0.8652243,0.86550915,0.86579406,0.8660788,0.8663636,0.86664826,0.8669328,0.8672174,0.867502,0.8677864,0.8680708,0.8683551,0.86863935,0.8689236,0.8692078,0.8694919,0.86977595,0.87005997,0.87034386,0.87062776,0.87091154,0.8711953,0.8714791,0.87176275,0.87204635,0.87232983,0.8726134,0.8728968,0.8731802,0.8734635,0.87374675,0.87403,0.87431306,0.8745962,0.87487924,0.87516224,0.8754452,0.875728,0.87601084,0.87629354,0.8765763,0.876859,0.8771416,0.87742406,0.8777066,0.87798893,0.87827134,0.8785536,0.87883586,0.8791181,0.8794002,0.8796823,0.8799643,0.8802463,0.8805282,0.8808101,0.88109183,0.8813736],"x":[0.8,0.800398406374502,0.8007968127490039,0.801195219123506,0.801593625498008,0.80199203187251,0.802390438247012,0.8027888446215139,0.803187250996016,0.8035856573705179,0.80398406374502,0.8043824701195219,0.8047808764940239,0.8051792828685259,0.8055776892430279,0.8059760956175299,0.8063745019920319,0.8067729083665338,0.8071713147410359,0.8075697211155378,0.8079681274900399,0.8083665338645418,0.8087649402390438,0.8091633466135458,0.8095617529880478,0.8099601593625498,0.8103585657370518,0.8107569721115537,0.8111553784860558,0.8115537848605577,0.8119521912350598,0.8123505976095617,0.8127490039840638,0.8131474103585657,0.8135458167330677,0.8139442231075698,0.8143426294820717,0.8147410358565738,0.8151394422310757,0.8155378486055777,0.8159362549800797,0.8163346613545817,0.8167330677290837,0.8171314741035857,0.8175298804780876,0.8179282868525897,0.8183266932270916,0.8187250996015937,0.8191235059760956,0.8195219123505976,0.8199203187250996,0.8203187250996016,0.8207171314741036,0.8211155378486056,0.8215139442231075,0.8219123505976096,0.8223107569721115,0.8227091633466136,0.8231075697211155,0.8235059760956175,0.8239043824701195,0.8243027888446215,0.8247011952191236,0.8250996015936255,0.8254980079681274,0.8258964143426295,0.8262948207171315,0.8266932270916335,0.8270916334661355,0.8274900398406374,0.8278884462151395,0.8282868525896414,0.8286852589641435,0.8290836653386454,0.8294820717131474,0.8298804780876494,0.8302788844621514,0.8306772908366534,0.8310756972111554,0.8314741035856573,0.8318725099601594,0.8322709163346613,0.8326693227091634,0.8330677290836653,0.8334661354581673,0.8338645418326693,0.8342629482071713,0.8346613545816733,0.8350597609561753,0.8354581673306772,0.8358565737051793,0.8362549800796812,0.8366533864541833,0.8370517928286852,0.8374501992031872,0.8378486055776893,0.8382470119521912,0.8386454183266933,0.8390438247011952,0.8394422310756973,0.8398406374501992,0.8402390438247012,0.8406374501992032,0.8410358565737052,0.8414342629482072,0.8418326693227092,0.8422310756972111,0.8426294820717132,0.8430278884462151,0.8434262948207172,0.8438247011952191,0.8442231075697211,0.8446215139442231,0.8450199203187251,0.8454183266932271,0.8458167330677291,0.846215139442231,0.8466135458167331,0.847011952191235,0.8474103585657371,0.847808764940239,0.848207171314741,0.848605577689243,0.849003984063745,0.8494023904382471,0.849800796812749,0.850199203187251,0.850597609561753,0.850996015936255,0.851394422310757,0.851792828685259,0.8521912350597609,0.852589641434263,0.8529880478087649,0.853386454183267,0.8537848605577689,0.8541832669322709,0.8545816733067729,0.8549800796812749,0.8553784860557769,0.8557768924302789,0.8561752988047808,0.8565737051792829,0.8569721115537848,0.8573705179282869,0.8577689243027888,0.8581673306772908,0.8585657370517928,0.8589641434262948,0.8593625498007968,0.8597609561752988,0.8601593625498007,0.8605577689243028,0.8609561752988047,0.8613545816733068,0.8617529880478088,0.8621513944223107,0.8625498007968128,0.8629482071713147,0.8633466135458168,0.8637450199203187,0.8641434262948208,0.8645418326693227,0.8649402390438247,0.8653386454183267,0.8657370517928287,0.8661354581673307,0.8665338645418327,0.8669322709163346,0.8673306772908367,0.8677290836653386,0.8681274900398407,0.8685258964143426,0.8689243027888446,0.8693227091633466,0.8697211155378486,0.8701195219123506,0.8705179282868526,0.8709163346613545,0.8713147410358566,0.8717131474103585,0.8721115537848606,0.8725099601593626,0.8729083665338645,0.8733067729083666,0.8737051792828685,0.8741035856573706,0.8745019920318725,0.8749003984063745,0.8752988047808765,0.8756972111553785,0.8760956175298805,0.8764940239043825,0.8768924302788844,0.8772908366533865,0.8776892430278884,0.8780876494023905,0.8784860557768924,0.8788844621513944,0.8792828685258964,0.8796812749003984,0.8800796812749004,0.8804780876494024,0.8808764940239043,0.8812749003984064,0.8816733067729083,0.8820717131474104,0.8824701195219123,0.8828685258964143,0.8832669322709163,0.8836653386454183,0.8840637450199204,0.8844621513944223,0.8848605577689242,0.8852589641434263,0.8856573705179283,0.8860557768924303,0.8864541832669323,0.8868525896414342,0.8872509960159363,0.8876494023904382,0.8880478087649403,0.8884462151394422,0.8888446215139443,0.8892430278884462,0.8896414342629482,0.8900398406374502,0.8904382470119522,0.8908366533864542,0.8912350597609562,0.8916334661354581,0.8920318725099602,0.8924302788844621,0.8928286852589642,0.8932270916334661,0.8936254980079681,0.8940239043824701,0.8944223107569721,0.8948207171314742,0.8952191235059761,0.895617529880478,0.8960159362549801,0.896414342629482,0.8968127490039841,0.8972111553784861,0.897609561752988,0.8980079681274901,0.898406374501992,0.8988047808764941,0.899203187250996,0.899601593625498,0.9,0.900398406374502,0.900796812749004,0.901195219123506,0.9015936254980079,0.90199203187251,0.9023904382470119,0.902788844621514,0.9031872509960159,0.9035856573705179,0.9039840637450199,0.9043824701195219,0.904780876494024,0.9051792828685259,0.9055776892430278,0.9059760956175299,0.9063745019920318,0.9067729083665339,0.9071713147410359,0.9075697211155378,0.9079681274900399,0.9083665338645418,0.9087649402390439,0.9091633466135458,0.9095617529880478,0.9099601593625498,0.9103585657370518,0.9107569721115538,0.9111553784860558,0.9115537848605577,0.9119521912350598,0.9123505976095617,0.9127490039840638,0.9131474103585657,0.9135458167330678,0.9139442231075697,0.9143426294820717,0.9147410358565737,0.9151394422310757,0.9155378486055777,0.9159362549800797,0.9163346613545816,0.9167330677290837,0.9171314741035856,0.9175298804780877,0.9179282868525896,0.9183266932270916,0.9187250996015937,0.9191235059760956,0.9195219123505977,0.9199203187250996,0.9203187250996016,0.9207171314741036,0.9211155378486056,0.9215139442231076,0.9219123505976096,0.9223107569721115,0.9227091633466136,0.9231075697211155,0.9235059760956176,0.9239043824701195,0.9243027888446215,0.9247011952191235,0.9250996015936255,0.9254980079681275,0.9258964143426295,0.9262948207171314,0.9266932270916335,0.9270916334661354,0.9274900398406375,0.9278884462151394,0.9282868525896414,0.9286852589641434,0.9290836653386454,0.9294820717131475,0.9298804780876494,0.9302788844621513,0.9306772908366534,0.9310756972111554,0.9314741035856574,0.9318725099601594,0.9322709163346613,0.9326693227091634,0.9330677290836653,0.9334661354581674,0.9338645418326693,0.9342629482071713,0.9346613545816733,0.9350597609561753,0.9354581673306773,0.9358565737051793,0.9362549800796812,0.9366533864541833,0.9370517928286852,0.9374501992031873,0.9378486055776892,0.9382470119521913,0.9386454183266932,0.9390438247011952,0.9394422310756972,0.9398406374501992,0.9402390438247012,0.9406374501992032,0.9410358565737051,0.9414342629482072,0.9418326693227091,0.9422310756972112,0.9426294820717132,0.9430278884462151,0.9434262948207172,0.9438247011952191,0.9442231075697212,0.9446215139442231,0.9450199203187251,0.9454183266932271,0.9458167330677291,0.9462151394422311,0.9466135458167331,0.947011952191235,0.9474103585657371,0.947808764940239,0.9482071713147411,0.948605577689243,0.949003984063745,0.949402390438247,0.949800796812749,0.950199203187251,0.950597609561753,0.9509960159362549,0.951394422310757,0.9517928286852589,0.952191235059761,0.952589641434263,0.9529880478087649,0.953386454183267,0.9537848605577689,0.954183266932271,0.9545816733067729,0.9549800796812749,0.9553784860557769,0.9557768924302789,0.9561752988047809,0.9565737051792829,0.9569721115537848,0.9573705179282869,0.9577689243027888,0.9581673306772909,0.9585657370517928,0.9589641434262948,0.9593625498007968,0.9597609561752988,0.9601593625498008,0.9605577689243028,0.9609561752988047,0.9613545816733068,0.9617529880478087,0.9621513944223108,0.9625498007968127,0.9629482071713148,0.9633466135458167,0.9637450199203187,0.9641434262948207,0.9645418326693227,0.9649402390438248,0.9653386454183267,0.9657370517928286,0.9661354581673307,0.9665338645418327,0.9669322709163347,0.9673306772908367,0.9677290836653386,0.9681274900398407,0.9685258964143426,0.9689243027888447,0.9693227091633466,0.9697211155378486,0.9701195219123506,0.9705179282868526,0.9709163346613546,0.9713147410358566,0.9717131474103585,0.9721115537848606,0.9725099601593625,0.9729083665338646,0.9733067729083665,0.9737051792828685,0.9741035856573705,0.9745019920318725,0.9749003984063745,0.9752988047808765,0.9756972111553784,0.9760956175298805,0.9764940239043824,0.9768924302788845,0.9772908366533865,0.9776892430278884,0.9780876494023905,0.9784860557768924,0.9788844621513945,0.9792828685258964,0.9796812749003984,0.9800796812749004,0.9804780876494024,0.9808764940239044,0.9812749003984064,0.9816733067729083,0.9820717131474104,0.9824701195219123,0.9828685258964144,0.9832669322709163,0.9836653386454183,0.9840637450199203,0.9844621513944223,0.9848605577689243,0.9852589641434263,0.9856573705179282,0.9860557768924303,0.9864541832669322,0.9868525896414343,0.9872509960159362,0.9876494023904383,0.9880478087649402,0.9884462151394422,0.9888446215139443,0.9892430278884462,0.9896414342629483,0.9900398406374502,0.9904382470119522,0.9908366533864542,0.9912350597609562,0.9916334661354582,0.9920318725099602,0.9924302788844621,0.9928286852589642,0.9932270916334661,0.9936254980079682,0.9940239043824701,0.9944223107569721,0.9948207171314741,0.9952191235059761,0.9956175298804781,0.9960159362549801,0.996414342629482,0.9968127490039841,0.997211155378486,0.9976095617529881,0.99800796812749,0.998406374501992,0.998804780876494,0.999203187250996,0.999601593625498,1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/smaller.json b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/smaller.json
new file mode 100644
index 000000000000..f7481e514cbd
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/fixtures/julia/smaller.json
@@ -0,0 +1 @@
+{"expected":[-0.7326682,-0.7301775,-0.7276829,-0.7251843,-0.722682,-0.72017574,-0.7176656,-0.7151515,-0.7126336,-0.7101118,-0.70758617,-0.70505655,-0.70252305,-0.6999857,-0.69744444,-0.6948992,-0.6923502,-0.68979716,-0.6872403,-0.68467957,-0.6821149,-0.6795463,-0.67697376,-0.6743974,-0.67181706,-0.6692329,-0.66664475,-0.66405267,-0.66145676,-0.65885687,-0.65625316,-0.65364546,-0.6510338,-0.64841837,-0.645799,-0.64317566,-0.64054847,-0.6379173,-0.6352822,-0.63264334,-0.6300005,-0.6273537,-0.62470305,-0.6220485,-0.6193901,-0.6167277,-0.6140615,-0.6113913,-0.6087173,-0.60603935,-0.60335755,-0.6006719,-0.5979822,-0.5952888,-0.5925915,-0.5898903,-0.5871852,-0.58447623,-0.58176345,-0.5790467,-0.57632625,-0.57360184,-0.5708736,-0.5681415,-0.56540555,-0.5626658,-0.5599222,-0.5571748,-0.5544235,-0.55166847,-0.5489096,-0.5461469,-0.54338044,-0.54061013,-0.537836,-0.53505814,-0.5322765,-0.5294911,-0.52670187,-0.5239089,-0.52111226,-0.5183118,-0.51550764,-0.51269966,-0.509888,-0.5070726,-0.5042535,-0.50143075,-0.4986042,-0.49577406,-0.49294022,-0.49010268,-0.48726147,-0.48441663,-0.48156813,-0.47871602,-0.47586027,-0.47300088,-0.47013792,-0.46727133,-0.4644012,-0.46152747,-0.45865017,-0.4557693,-0.45288485,-0.44999695,-0.44710547,-0.44421053,-0.44131204,-0.43841004,-0.43550462,-0.43259573,-0.4296834,-0.4267676,-0.42384836,-0.4209257,-0.4179997,-0.41507027,-0.41213748,-0.4092013,-0.40626177,-0.40331897,-0.4003728,-0.39742336,-0.39447057,-0.39151457,-0.3885553,-0.38559273,-0.38262698,-0.37965798,-0.37668583,-0.37371048,-0.37073195,-0.3677503,-0.36476547,-0.36177754,-0.35878655,-0.35579243,-0.35279527,-0.34979504,-0.3467918,-0.34378558,-0.34077632,-0.3377641,-0.3347489,-0.33173078,-0.32870978,-0.32568583,-0.32265905,-0.31962934,-0.31659687,-0.31356153,-0.31052336,-0.30748245,-0.30443877,-0.30139238,-0.29834327,-0.2952914,-0.29223692,-0.28917977,-0.28611997,-0.28305757,-0.27999258,-0.27692506,-0.27385497,-0.27078232,-0.26770723,-0.2646296,-0.2615496,-0.25846714,-0.25538227,-0.25229502,-0.24920538,-0.24611346,-0.24301921,-0.23992266,-0.2368239,-0.23372287,-0.23061962,-0.22751419,-0.22440661,-0.22129692,-0.2181851,-0.21507119,-0.21195522,-0.20883724,-0.20571727,-0.20259531,-0.19947138,-0.19634555,-0.19321783,-0.19008824,-0.1869568,-0.18382354,-0.1806885,-0.1775517,-0.17441319,-0.17127295,-0.16813105,-0.1649875,-0.16184235,-0.15869561,-0.15554729,-0.15239745,-0.14924611,-0.14609331,-0.14293906,-0.1397834,-0.13662633,-0.13346793,-0.13030821,-0.12714718,-0.12398489,-0.120821364,-0.11765665,-0.11449074,-0.11132371,-0.10815555,-0.10498631,-0.10181603,-0.09864472,-0.095472425,-0.09229917,-0.089124985,-0.08594991,-0.08277397,-0.0795972,-0.07641962,-0.07324128,-0.07006219,-0.066882394,-0.063701935,-0.060520817,-0.05733909,-0.054156788,-0.050973937,-0.047790572,-0.044606715,-0.041422416,-0.03823769,-0.035052583,-0.031867117,-0.028681327,-0.025495248,-0.022308905,-0.01912234,-0.015935581,-0.012748659,-0.009561607,-0.006374459,-0.0031872457,0.0,0.0031872457,0.006374459,0.009561607,0.012748659,0.015935581,0.01912234,0.022308905,0.025495248,0.028681327,0.031867117,0.035052583,0.03823769,0.041422416,0.044606715,0.047790572,0.050973937,0.054156788,0.05733909,0.060520817,0.063701935,0.066882394,0.07006219,0.07324128,0.07641962,0.0795972,0.08277397,0.08594991,0.089124985,0.09229917,0.095472425,0.09864472,0.10181603,0.10498631,0.10815555,0.11132371,0.11449074,0.11765665,0.120821364,0.12398489,0.12714718,0.13030821,0.13346793,0.13662633,0.1397834,0.14293906,0.14609331,0.14924611,0.15239745,0.15554729,0.15869561,0.16184235,0.1649875,0.16813105,0.17127295,0.17441319,0.1775517,0.1806885,0.18382354,0.1869568,0.19008824,0.19321783,0.19634555,0.19947138,0.20259531,0.20571727,0.20883724,0.21195522,0.21507119,0.2181851,0.22129692,0.22440661,0.22751419,0.23061962,0.23372287,0.2368239,0.23992266,0.24301921,0.24611346,0.24920538,0.25229502,0.25538227,0.25846714,0.2615496,0.2646296,0.26770723,0.27078232,0.27385497,0.27692506,0.27999258,0.28305757,0.28611997,0.28917977,0.29223692,0.2952914,0.29834327,0.30139238,0.30443877,0.30748245,0.31052336,0.31356153,0.31659687,0.31962934,0.32265905,0.32568583,0.32870978,0.33173078,0.3347489,0.3377641,0.34077632,0.34378558,0.3467918,0.34979504,0.35279527,0.35579243,0.35878655,0.36177754,0.36476547,0.3677503,0.37073195,0.37371048,0.37668583,0.37965798,0.38262698,0.38559273,0.3885553,0.39151457,0.39447057,0.39742336,0.4003728,0.40331897,0.40626177,0.4092013,0.41213748,0.41507027,0.4179997,0.4209257,0.42384836,0.4267676,0.4296834,0.43259573,0.43550462,0.43841004,0.44131204,0.44421053,0.44710547,0.44999695,0.45288485,0.4557693,0.45865017,0.46152747,0.4644012,0.46727133,0.47013792,0.47300088,0.47586027,0.47871602,0.48156813,0.48441663,0.48726147,0.49010268,0.49294022,0.49577406,0.4986042,0.50143075,0.5042535,0.5070726,0.509888,0.51269966,0.51550764,0.5183118,0.52111226,0.5239089,0.52670187,0.5294911,0.5322765,0.53505814,0.537836,0.54061013,0.54338044,0.5461469,0.5489096,0.55166847,0.5544235,0.5571748,0.5599222,0.5626658,0.56540555,0.5681415,0.5708736,0.57360184,0.57632625,0.5790467,0.58176345,0.58447623,0.5871852,0.5898903,0.5925915,0.5952888,0.5979822,0.6006719,0.60335755,0.60603935,0.6087173,0.6113913,0.6140615,0.6167277,0.6193901,0.6220485,0.62470305,0.6273537,0.6300005,0.63264334,0.6352822,0.6379173,0.64054847,0.64317566,0.645799,0.64841837,0.6510338,0.65364546,0.65625316,0.65885687,0.66145676,0.66405267,0.66664475,0.6692329,0.67181706,0.6743974,0.67697376,0.6795463,0.6821149,0.68467957,0.6872403,0.68979716,0.6923502,0.6948992,0.69744444,0.6999857,0.70252305,0.70505655,0.70758617,0.7101118,0.7126336,0.7151515,0.7176656,0.72017574,0.722682,0.7251843,0.7276829,0.7301775,0.7326682],"x":[-0.8,-0.796812749003984,-0.7936254980079681,-0.7904382470119522,-0.7872509960159363,-0.7840637450199203,-0.7808764940239044,-0.7776892430278884,-0.7745019920318725,-0.7713147410358566,-0.7681274900398406,-0.7649402390438247,-0.7617529880478088,-0.7585657370517929,-0.7553784860557768,-0.7521912350597609,-0.749003984063745,-0.7458167330677291,-0.7426294820717132,-0.7394422310756972,-0.7362549800796813,-0.7330677290836654,-0.7298804780876494,-0.7266932270916334,-0.7235059760956175,-0.7203187250996016,-0.7171314741035857,-0.7139442231075698,-0.7107569721115538,-0.7075697211155378,-0.7043824701195219,-0.701195219123506,-0.69800796812749,-0.6948207171314741,-0.6916334661354582,-0.6884462151394423,-0.6852589641434262,-0.6820717131474103,-0.6788844621513944,-0.6756972111553785,-0.6725099601593626,-0.6693227091633466,-0.6661354581673307,-0.6629482071713148,-0.6597609561752988,-0.6565737051792828,-0.6533864541832669,-0.650199203187251,-0.6470119521912351,-0.6438247011952192,-0.6406374501992032,-0.6374501992031872,-0.6342629482071713,-0.6310756972111554,-0.6278884462151394,-0.6247011952191235,-0.6215139442231076,-0.6183266932270917,-0.6151394422310758,-0.6119521912350597,-0.6087649402390438,-0.6055776892430279,-0.602390438247012,-0.599203187250996,-0.5960159362549801,-0.5928286852589641,-0.5896414342629482,-0.5864541832669322,-0.5832669322709163,-0.5800796812749004,-0.5768924302788845,-0.5737051792828686,-0.5705179282868525,-0.5673306772908366,-0.5641434262948207,-0.5609561752988048,-0.5577689243027888,-0.5545816733067729,-0.551394422310757,-0.5482071713147411,-0.5450199203187251,-0.5418326693227091,-0.5386454183266932,-0.5354581673306773,-0.5322709163346614,-0.5290836653386454,-0.5258964143426295,-0.5227091633466135,-0.5195219123505976,-0.5163346613545817,-0.5131474103585657,-0.5099601593625498,-0.5067729083665339,-0.503585657370518,-0.500398406374502,-0.49721115537848604,-0.4940239043824701,-0.49083665338645416,-0.48764940239043825,-0.48446215139442234,-0.48127490039840637,-0.47808764940239046,-0.4749003984063745,-0.4717131474103586,-0.4685258964143426,-0.4653386454183267,-0.46215139442231074,-0.4589641434262948,-0.45577689243027886,-0.45258964143426295,-0.44940239043824703,-0.44621513944223107,-0.44302788844621516,-0.4398406374501992,-0.4366533864541833,-0.4334661354581673,-0.4302788844621514,-0.42709163346613543,-0.4239043824701195,-0.4207171314741036,-0.41752988047808764,-0.41434262948207173,-0.41115537848605577,-0.40796812749003986,-0.4047808764940239,-0.401593625498008,-0.398406374501992,-0.3952191235059761,-0.39203187250996013,-0.3888446215139442,-0.3856573705179283,-0.38247011952191234,-0.37928286852589643,-0.37609561752988047,-0.37290836653386455,-0.3697211155378486,-0.3665338645418327,-0.3633466135458167,-0.3601593625498008,-0.3569721115537849,-0.3537848605577689,-0.350597609561753,-0.34741035856573704,-0.34422310756972113,-0.34103585657370517,-0.33784860557768925,-0.3346613545816733,-0.3314741035856574,-0.3282868525896414,-0.3250996015936255,-0.3219123505976096,-0.3187250996015936,-0.3155378486055777,-0.31235059760956174,-0.30916334661354583,-0.30597609561752986,-0.30278884462151395,-0.299601593625498,-0.2964143426294821,-0.2932270916334661,-0.2900398406374502,-0.2868525896414343,-0.2836653386454183,-0.2804780876494024,-0.27729083665338644,-0.27410358565737053,-0.27091633466135456,-0.26772908366533865,-0.2645418326693227,-0.2613545816733068,-0.25816733067729086,-0.2549800796812749,-0.251792828685259,-0.24860557768924302,-0.24541832669322708,-0.24223107569721117,-0.23904382470119523,-0.2358565737051793,-0.23266932270916335,-0.2294820717131474,-0.22629482071713147,-0.22310756972111553,-0.2199203187250996,-0.21673306772908366,-0.21354581673306772,-0.2103585657370518,-0.20717131474103587,-0.20398406374501993,-0.200796812749004,-0.19760956175298805,-0.1944223107569721,-0.19123505976095617,-0.18804780876494023,-0.1848605577689243,-0.18167330677290836,-0.17848605577689244,-0.1752988047808765,-0.17211155378486057,-0.16892430278884463,-0.1657370517928287,-0.16254980079681275,-0.1593625498007968,-0.15617529880478087,-0.15298804780876493,-0.149800796812749,-0.14661354581673305,-0.14342629482071714,-0.1402390438247012,-0.13705179282868526,-0.13386454183266933,-0.1306772908366534,-0.12749003984063745,-0.12430278884462151,-0.12111553784860558,-0.11792828685258964,-0.1147410358565737,-0.11155378486055777,-0.10836653386454183,-0.1051792828685259,-0.10199203187250996,-0.09880478087649402,-0.09561752988047809,-0.09243027888446215,-0.08924302788844622,-0.08605577689243028,-0.08286852589641434,-0.0796812749003984,-0.07649402390438247,-0.07330677290836653,-0.0701195219123506,-0.06693227091633466,-0.06374501992031872,-0.06055776892430279,-0.05737051792828685,-0.054183266932270914,-0.05099601593625498,-0.04780876494023904,-0.04462151394422311,-0.04143426294820717,-0.03824701195219123,-0.0350597609561753,-0.03187250996015936,-0.028685258964143426,-0.02549800796812749,-0.022310756972111555,-0.019123505976095617,-0.01593625498007968,-0.012749003984063745,-0.009561752988047808,-0.006374501992031873,-0.0031872509960159364,0.0,0.0031872509960159364,0.006374501992031873,0.009561752988047808,0.012749003984063745,0.01593625498007968,0.019123505976095617,0.022310756972111555,0.02549800796812749,0.028685258964143426,0.03187250996015936,0.0350597609561753,0.03824701195219123,0.04143426294820717,0.04462151394422311,0.04780876494023904,0.05099601593625498,0.054183266932270914,0.05737051792828685,0.06055776892430279,0.06374501992031872,0.06693227091633466,0.0701195219123506,0.07330677290836653,0.07649402390438247,0.0796812749003984,0.08286852589641434,0.08605577689243028,0.08924302788844622,0.09243027888446215,0.09561752988047809,0.09880478087649402,0.10199203187250996,0.1051792828685259,0.10836653386454183,0.11155378486055777,0.1147410358565737,0.11792828685258964,0.12111553784860558,0.12430278884462151,0.12749003984063745,0.1306772908366534,0.13386454183266933,0.13705179282868526,0.1402390438247012,0.14342629482071714,0.14661354581673305,0.149800796812749,0.15298804780876493,0.15617529880478087,0.1593625498007968,0.16254980079681275,0.1657370517928287,0.16892430278884463,0.17211155378486057,0.1752988047808765,0.17848605577689244,0.18167330677290836,0.1848605577689243,0.18804780876494023,0.19123505976095617,0.1944223107569721,0.19760956175298805,0.200796812749004,0.20398406374501993,0.20717131474103587,0.2103585657370518,0.21354581673306772,0.21673306772908366,0.2199203187250996,0.22310756972111553,0.22629482071713147,0.2294820717131474,0.23266932270916335,0.2358565737051793,0.23904382470119523,0.24223107569721117,0.24541832669322708,0.24860557768924302,0.251792828685259,0.2549800796812749,0.25816733067729086,0.2613545816733068,0.2645418326693227,0.26772908366533865,0.27091633466135456,0.27410358565737053,0.27729083665338644,0.2804780876494024,0.2836653386454183,0.2868525896414343,0.2900398406374502,0.2932270916334661,0.2964143426294821,0.299601593625498,0.30278884462151395,0.30597609561752986,0.30916334661354583,0.31235059760956174,0.3155378486055777,0.3187250996015936,0.3219123505976096,0.3250996015936255,0.3282868525896414,0.3314741035856574,0.3346613545816733,0.33784860557768925,0.34103585657370517,0.34422310756972113,0.34741035856573704,0.350597609561753,0.3537848605577689,0.3569721115537849,0.3601593625498008,0.3633466135458167,0.3665338645418327,0.3697211155378486,0.37290836653386455,0.37609561752988047,0.37928286852589643,0.38247011952191234,0.3856573705179283,0.3888446215139442,0.39203187250996013,0.3952191235059761,0.398406374501992,0.401593625498008,0.4047808764940239,0.40796812749003986,0.41115537848605577,0.41434262948207173,0.41752988047808764,0.4207171314741036,0.4239043824701195,0.42709163346613543,0.4302788844621514,0.4334661354581673,0.4366533864541833,0.4398406374501992,0.44302788844621516,0.44621513944223107,0.44940239043824703,0.45258964143426295,0.45577689243027886,0.4589641434262948,0.46215139442231074,0.4653386454183267,0.4685258964143426,0.4717131474103586,0.4749003984063745,0.47808764940239046,0.48127490039840637,0.48446215139442234,0.48764940239043825,0.49083665338645416,0.4940239043824701,0.49721115537848604,0.500398406374502,0.503585657370518,0.5067729083665339,0.5099601593625498,0.5131474103585657,0.5163346613545817,0.5195219123505976,0.5227091633466135,0.5258964143426295,0.5290836653386454,0.5322709163346614,0.5354581673306773,0.5386454183266932,0.5418326693227091,0.5450199203187251,0.5482071713147411,0.551394422310757,0.5545816733067729,0.5577689243027888,0.5609561752988048,0.5641434262948207,0.5673306772908366,0.5705179282868525,0.5737051792828686,0.5768924302788845,0.5800796812749004,0.5832669322709163,0.5864541832669322,0.5896414342629482,0.5928286852589641,0.5960159362549801,0.599203187250996,0.602390438247012,0.6055776892430279,0.6087649402390438,0.6119521912350597,0.6151394422310758,0.6183266932270917,0.6215139442231076,0.6247011952191235,0.6278884462151394,0.6310756972111554,0.6342629482071713,0.6374501992031872,0.6406374501992032,0.6438247011952192,0.6470119521912351,0.650199203187251,0.6533864541832669,0.6565737051792828,0.6597609561752988,0.6629482071713148,0.6661354581673307,0.6693227091633466,0.6725099601593626,0.6756972111553785,0.6788844621513944,0.6820717131474103,0.6852589641434262,0.6884462151394423,0.6916334661354582,0.6948207171314741,0.69800796812749,0.701195219123506,0.7043824701195219,0.7075697211155378,0.7107569721115538,0.7139442231075698,0.7171314741035857,0.7203187250996016,0.7235059760956175,0.7266932270916334,0.7298804780876494,0.7330677290836654,0.7362549800796813,0.7394422310756972,0.7426294820717132,0.7458167330677291,0.749003984063745,0.7521912350597609,0.7553784860557768,0.7585657370517929,0.7617529880478088,0.7649402390438247,0.7681274900398406,0.7713147410358566,0.7745019920318725,0.7776892430278884,0.7808764940239044,0.7840637450199203,0.7872509960159363,0.7904382470119522,0.7936254980079681,0.796812749003984,0.8]}
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/test.js b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/test.js
new file mode 100644
index 000000000000..c1a3b7c36b61
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/test.js
@@ -0,0 +1,269 @@
+/**
+* @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 isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' );
+var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' );
+var ulpdiff = require( '@stdlib/number/float32/base/ulp-difference' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var asinhf = require( './../lib' );
+
+
+// FIXTURES //
+
+var largerNegative = require( './fixtures/julia/larger_negative.json' );
+var largerPositive = require( './fixtures/julia/larger_positive.json' );
+var largeNegative = require( './fixtures/julia/large_negative.json' );
+var largePositive = require( './fixtures/julia/large_positive.json' );
+var mediumNegative = require( './fixtures/julia/medium_negative.json' );
+var mediumPositive = require( './fixtures/julia/medium_positive.json' );
+var smallNegative = require( './fixtures/julia/small_negative.json' );
+var smallPositive = require( './fixtures/julia/small_positive.json' );
+var smaller = require( './fixtures/julia/smaller.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof asinhf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function underflows if provided a number which is negligible compared to unity', function test( t ) {
+ var x = f32( EPS / f32( 2.0 ) );
+ var v = asinhf( x );
+ t.strictEqual( v, f32( 0.0 ), 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-0.8,0.8]` (tests whether `asinhf` behaves as an odd function)', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = smaller.x;
+ expected = smaller.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 160, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-1.0,-0.8]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = smallNegative.x;
+ expected = smallNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[0.8,1.0]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = smallPositive.x;
+ expected = smallPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-3.0,-1.0]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = mediumNegative.x;
+ expected = mediumNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[1.0,3.0]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = mediumPositive.x;
+ expected = mediumPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[3.0,28.0]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largePositive.x;
+ expected = largePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-28.0,-3.0]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largeNegative.x;
+ expected = largeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[28.0,100.0]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largerPositive.x;
+ expected = largerPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-100.0,-28.0]`', function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largerNegative.x;
+ expected = largerNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function overflows if provided a value which, when squared, overflows', function test( t ) {
+ var x = f32( 1.0e200 );
+ var v = asinhf( x );
+ t.strictEqual( v, PINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) {
+ var v = asinhf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `+infinity` if provided `+infinity`', function test( t ) {
+ var v = asinhf( PINF );
+ t.strictEqual( v, PINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `-infinity` if provided `-infinity`', function test( t ) {
+ var v = asinhf( NINF );
+ t.strictEqual( v, NINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `-0` if provided `-0`', function test( t ) {
+ var v = asinhf( -0 );
+ t.strictEqual( isNegativeZerof( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `+0` if provided `+0`', function test( t ) {
+ var v = asinhf( +0 );
+ t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/test.native.js
new file mode 100644
index 000000000000..4fa2021ea413
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/fast/asinhf/test/test.native.js
@@ -0,0 +1,278 @@
+/**
+* @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 resolve = require( 'path' ).resolve;
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' );
+var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' );
+var ulpdiff = require( '@stdlib/number/float32/base/ulp-difference' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+
+
+// VARIABLES //
+
+var asinhf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( asinhf instanceof Error )
+};
+
+
+// FIXTURES //
+
+var largerNegative = require( './fixtures/julia/larger_negative.json' );
+var largerPositive = require( './fixtures/julia/larger_positive.json' );
+var largeNegative = require( './fixtures/julia/large_negative.json' );
+var largePositive = require( './fixtures/julia/large_positive.json' );
+var mediumNegative = require( './fixtures/julia/medium_negative.json' );
+var mediumPositive = require( './fixtures/julia/medium_positive.json' );
+var smallNegative = require( './fixtures/julia/small_negative.json' );
+var smallPositive = require( './fixtures/julia/small_positive.json' );
+var smaller = require( './fixtures/julia/smaller.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', opts, function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof asinhf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function underflows if provided a number which is negligible compared to unity', opts, function test( t ) {
+ var x = f32( EPS / f32( 2.0 ) );
+ var v = asinhf( x );
+ t.strictEqual( v, f32( 0.0 ), 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-0.8,0.8]` (tests whether `asinhf` behaves as an odd function)', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = smaller.x;
+ expected = smaller.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 160, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-1.0,-0.8]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = smallNegative.x;
+ expected = smallNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[0.8,1.0]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = smallPositive.x;
+ expected = smallPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-3.0,-1.0]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = mediumNegative.x;
+ expected = mediumNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[1.0,3.0]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = mediumPositive.x;
+ expected = mediumPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 2, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[3.0,28.0]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largePositive.x;
+ expected = largePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-28.0,-3.0]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largeNegative.x;
+ expected = largeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[28.0,100.0]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largerPositive.x;
+ expected = largerPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the hyperbolic arcsine on the interval `[-100.0,-28.0]`', opts, function test( t ) {
+ var expected;
+ var v;
+ var x;
+ var i;
+ var e;
+
+ x = largerNegative.x;
+ expected = largerNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ v = asinhf( x[ i ] );
+ e = f32( expected[ i ] );
+ t.strictEqual( ulpdiff( v, e ) <= 1, true, 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function overflows if provided a value which, when squared, overflows', opts, function test( t ) {
+ var x = f32( 1.0e200 );
+ var v = asinhf( x );
+ t.strictEqual( v, PINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) {
+ var v = asinhf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `+infinity` if provided `+infinity`', opts, function test( t ) {
+ var v = asinhf( PINF );
+ t.strictEqual( v, PINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `-infinity` if provided `-infinity`', opts, function test( t ) {
+ var v = asinhf( NINF );
+ t.strictEqual( v, NINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `-0` if provided `-0`', opts, function test( t ) {
+ var v = asinhf( -0 );
+ t.strictEqual( isNegativeZerof( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `+0` if provided `+0`', opts, function test( t ) {
+ var v = asinhf( +0 );
+ t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' );
+ t.end();
+});