diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/README.md b/lib/node_modules/@stdlib/stats/array/nanrange-by/README.md
new file mode 100644
index 000000000000..117c158789af
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/README.md
@@ -0,0 +1,159 @@
+
+
+# nanrangeBy
+
+> Calculate the [range][range] of an array via a callback function, ignoring `NaN` values.
+
+
+
+The [**range**][range] is defined as the difference between the maximum and minimum values.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var nanrangeBy = require( '@stdlib/stats/array/nanrange-by' );
+```
+
+#### nanrangeBy( x, clbk\[, thisArg] )
+
+Computes the [range][range] of an array via a callback function, ignoring `NaN` values.
+
+```javascript
+function accessor( v ) {
+ return v * 2.0;
+}
+
+var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, NaN, 0.0, -1.0, -3.0, NaN ];
+
+var v = nanrangeBy( x, accessor );
+// returns 18.0
+```
+
+The function has the following parameters:
+
+- **x**: input array.
+- **clbk**: callback function.
+- **thisArg**: execution context (_optional_).
+
+The invoked callback is provided three arguments:
+
+- **value**: current array element.
+- **index**: current array index.
+- **array**: input array.
+
+To set the callback execution context, provide a `thisArg`.
+
+```javascript
+function accessor( v ) {
+ this.count += 1;
+ return v * 2.0;
+}
+
+var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, NaN, 0.0, -1.0, -3.0, NaN ];
+
+var context = {
+ 'count': 0
+};
+
+var v = nanrangeBy( x, accessor, context );
+// returns 18.0
+
+var cnt = context.count;
+// returns 10
+```
+
+
+
+
+
+
+
+## Notes
+
+- If provided an empty array, the function returns `NaN`.
+- A provided callback function should return a numeric value.
+- If a provided callback function returns `NaN`, the value is **ignored**.
+- If a provided callback function does not return any value (or equivalently, explicitly returns `undefined`), the value is **ignored**.
+- The function supports array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/base/accessor`][@stdlib/array/base/accessor]).
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/base/uniform' );
+var bernoulli = require( '@stdlib/random/base/bernoulli' );
+var filledarrayBy = require( '@stdlib/array/filled-by' );
+var nanrangeBy = require( '@stdlib/stats/array/nanrange-by' );
+
+function rand() {
+ if ( bernoulli( 0.8 ) < 1 ) {
+ return NaN;
+ }
+ return uniform( -50.0, 50.0 );
+}
+
+function accessor( v ) {
+ return v * 2.0;
+}
+
+var x = filledarrayBy( 10, 'float64', rand );
+console.log( x );
+
+var v = nanrangeBy( x, accessor );
+console.log( v );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[@stdlib/array/base/accessor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/accessor
+
+[range]: https://en.wikipedia.org/wiki/Range_%28statistics%29
+
+
+
+
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/array/nanrange-by/benchmark/benchmark.js
new file mode 100644
index 000000000000..ba7dcde321a2
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/benchmark/benchmark.js
@@ -0,0 +1,115 @@
+/**
+* @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/base/uniform' );
+var bernoulli = require( '@stdlib/random/base/bernoulli' );
+var filledarrayBy = require( '@stdlib/array/filled-by' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var pkg = require( './../package.json' ).name;
+var nanrangeBy = require( './../lib' );
+
+
+// FUNCTIONS //
+
+/**
+* Accessor function.
+*
+* @private
+* @param {number} value - array element
+* @returns {number} accessed value
+*/
+function accessor( value ) {
+ return value * 2.0;
+}
+
+/**
+* Returns a random number.
+*
+* @private
+* @returns {number} random number
+*/
+function rand() {
+ if ( bernoulli( 0.8 ) < 1 ) {
+ return NaN;
+ }
+ return uniform( -10.0, 10.0 );
+}
+
+/**
+* Creates a benchmark function.
+*
+* @private
+* @param {PositiveInteger} len - array length
+* @returns {Function} benchmark function
+*/
+function createBenchmark( len ) {
+ var x = filledarrayBy( len, 'generic', rand );
+ return benchmark;
+
+ function benchmark( b ) {
+ var v;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ v = nanrangeBy( x, accessor );
+ if ( isnan( v ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( v ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+ }
+}
+
+
+// MAIN //
+
+/**
+* Main execution sequence.
+*
+* @private
+*/
+function main() {
+ var len;
+ var min;
+ var max;
+ var f;
+ var i;
+
+ min = 1; // 10^min
+ max = 6; // 10^max
+
+ for ( i = min; i <= max; i++ ) {
+ len = pow( 10, i );
+ f = createBenchmark( len );
+ bench( pkg+':len='+len, f );
+ }
+}
+
+main();
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/repl.txt b/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/repl.txt
new file mode 100644
index 000000000000..aa7a201892db
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/repl.txt
@@ -0,0 +1,46 @@
+
+{{alias}}( x, clbk[, thisArg] )
+ Computes the range of an array via a callback function, ignoring `NaN`
+ values.
+
+ If provided an empty array, the function returns `NaN`.
+
+ The callback function is provided three arguments:
+
+ - value: current array element.
+ - index: current array index.
+ - array: the input array.
+
+ The callback function should return a numeric value.
+
+ If the callback function returns `NaN`, the value is ignored.
+
+ If the callback function does not return any value (or equivalently,
+ explicitly returns `undefined`), the value is ignored.
+
+ Parameters
+ ----------
+ x: Array|TypedArray
+ Input array.
+
+ clbk: Function
+ Callback function.
+
+ thisArg: any (optional)
+ Execution context.
+
+ Returns
+ -------
+ out: number
+ Range.
+
+ Examples
+ --------
+ > function accessor( v ) { return v * 2.0; };
+ > var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, NaN, -1.0, -3.0 ];
+ > {{alias}}( x, accessor )
+ 18.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/types/index.d.ts
new file mode 100644
index 000000000000..6dffff189369
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/types/index.d.ts
@@ -0,0 +1,97 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+///
+
+import { Collection, AccessorArrayLike } from '@stdlib/types/array';
+
+/**
+* Input array.
+*/
+type InputArray = Collection | AccessorArrayLike;
+
+/**
+* Returns an accessed value.
+*
+* @returns accessed value
+*/
+type Nullary = ( this: ThisArg ) => number | void;
+
+/**
+* Returns an accessed value.
+*
+* @param value - current array element
+* @returns accessed value
+*/
+type Unary = ( this: ThisArg, value: T ) => number | void;
+
+/**
+* Returns an accessed value.
+*
+* @param value - current array element
+* @param index - current array index
+* @returns accessed value
+*/
+type Binary = ( this: ThisArg, value: T, index: number ) => number | void;
+
+/**
+* Returns an accessed value.
+*
+* @param value - current array element
+* @param index - current array index
+* @param array - input array
+* @returns accessed value
+*/
+type Ternary = ( this: ThisArg, value: T, index: number, array: U ) => number | void;
+
+/**
+* Returns an accessed value.
+*
+* @param value - current array element
+* @param index - current array index
+* @param array - input array
+* @returns accessed value
+*/
+type Callback = Nullary | Unary | Binary | Ternary;
+
+/**
+* Computes the range of an array via a callback function, ignoring `NaN` values.
+*
+* @param x - input array
+* @param clbk - callback
+* @param thisArg - execution context
+* @returns range
+*
+* @example
+* var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, NaN, 0.0, -1.0, -3.0 ];
+*
+* function accessor( v ) {
+* return v * 2.0;
+* }
+*
+* var v = nanrangeBy( x, accessor );
+* // returns 18.0
+*/
+declare function nanrangeBy = InputArray, ThisArg = unknown>( x: U, clbk: Callback, thisArg?: ThisParameterType> ): number;
+
+
+// EXPORTS //
+
+export = nanrangeBy;
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/types/test.ts b/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/types/test.ts
new file mode 100644
index 000000000000..86c84b77a30d
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/docs/types/test.ts
@@ -0,0 +1,76 @@
+/*
+* @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 AccessorArray = require( '@stdlib/array/base/accessor' );
+import nanrangeBy = require( './index' );
+
+/**
+* Accessor function.
+*
+* @returns accessed value
+*/
+function accessor(): number {
+ return 5.0;
+}
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ const x = new Float64Array( 10 );
+
+ nanrangeBy( x, accessor ); // $ExpectType number
+ nanrangeBy( new AccessorArray( x ), accessor ); // $ExpectType number
+
+ nanrangeBy( x, accessor, {} ); // $ExpectType number
+ nanrangeBy( new AccessorArray( x ), accessor, {} ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a first argument which is not an array-like object...
+{
+ nanrangeBy( 10, accessor ); // $ExpectError
+ nanrangeBy( true, accessor ); // $ExpectError
+ nanrangeBy( false, accessor ); // $ExpectError
+ nanrangeBy( null, accessor ); // $ExpectError
+ nanrangeBy( undefined, accessor ); // $ExpectError
+ nanrangeBy( {}, accessor ); // $ExpectError
+ nanrangeBy( ( x: number ): number => x, accessor ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided a second argument which is not a function...
+{
+ const x = new Float64Array( 10 );
+
+ nanrangeBy( x, '10' ); // $ExpectError
+ nanrangeBy( x, true ); // $ExpectError
+ nanrangeBy( x, false ); // $ExpectError
+ nanrangeBy( x, null ); // $ExpectError
+ nanrangeBy( x, undefined ); // $ExpectError
+ nanrangeBy( x, [] ); // $ExpectError
+ nanrangeBy( x, {} ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ const x = new Float64Array( 10 );
+
+ nanrangeBy(); // $ExpectError
+ nanrangeBy( x ); // $ExpectError
+ nanrangeBy( x, accessor, {}, 10 ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/examples/index.js b/lib/node_modules/@stdlib/stats/array/nanrange-by/examples/index.js
new file mode 100644
index 000000000000..0deb1be266a2
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/examples/index.js
@@ -0,0 +1,41 @@
+/**
+* @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/base/uniform' );
+var bernoulli = require( '@stdlib/random/base/bernoulli' );
+var filledarrayBy = require( '@stdlib/array/filled-by' );
+var nanrangeBy = require( './../lib' );
+
+function rand() {
+ if ( bernoulli( 0.8 ) < 1 ) {
+ return NaN;
+ }
+ return uniform( -50.0, 50.0 );
+}
+
+function accessor( v ) {
+ return v * 2.0;
+}
+
+var x = filledarrayBy( 10, 'float64', rand );
+console.log( x );
+
+var v = nanrangeBy( x, accessor );
+console.log( v );
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/lib/index.js b/lib/node_modules/@stdlib/stats/array/nanrange-by/lib/index.js
new file mode 100644
index 000000000000..6a0f6ff89b8e
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/lib/index.js
@@ -0,0 +1,46 @@
+/**
+* @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';
+
+/**
+* Compute the range of an array via a callback function, ignoring `NaN` values.
+*
+* @module @stdlib/stats/array/nanrange-by
+*
+* @example
+* var nanrangeBy = require( '@stdlib/stats/array/nanrange-by' );
+*
+* function accessor( v ) {
+* return v * 2.0;
+* }
+*
+* var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, NaN, 0.0, -1.0, -3.0 ];
+*
+* var v = nanrangeBy( x, accessor );
+* // returns 18.0
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/lib/main.js b/lib/node_modules/@stdlib/stats/array/nanrange-by/lib/main.js
new file mode 100644
index 000000000000..362eb3e2620c
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/lib/main.js
@@ -0,0 +1,78 @@
+/**
+* @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 isCollection = require( '@stdlib/assert/is-collection' );
+var isFunction = require( '@stdlib/assert/is-function' );
+var strided = require( '@stdlib/stats/base/nanrange-by' ).ndarray;
+var format = require( '@stdlib/string/format' );
+
+
+// MAIN //
+
+/**
+* Computes the range of an array via a callback function, ignoring `NaN` values.
+*
+* @param {Collection} x - input array
+* @param {Callback} clbk - callback
+* @param {*} [thisArg] - execution context
+* @throws {TypeError} first argument must be an array-like object
+* @throws {TypeError} second argument must be a function
+* @returns {number} range
+*
+* @example
+* var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, NaN, 0.0, -1.0, -3.0 ];
+*
+* function accessor( v ) {
+* return v * 2.0;
+* }
+*
+* var v = nanrangeBy( x, accessor );
+* // returns 18.0
+*/
+function nanrangeBy( x, clbk, thisArg ) {
+ if ( !isCollection( x ) ) {
+ throw new TypeError( format( 'invalid argument. First argument must be an array-like object. Value: `%s`.', x ) );
+ }
+ if ( !isFunction( clbk ) ) {
+ throw new TypeError( format( 'invalid argument. Second argument must be a function. Value: `%s`.', clbk ) );
+ }
+ return strided( x.length, x, 1, 0, wrapper );
+
+ /**
+ * Invokes a provided callback.
+ *
+ * @private
+ * @param {*} value - current element
+ * @param {NonNegativeInteger} aidx - current array index
+ * @param {NonNegativeInteger} sidx - current strided index
+ * @param {Collection} arr - input array
+ * @returns {number} callback return value
+ */
+ function wrapper( value, aidx, sidx, arr ) {
+ return clbk.call( thisArg, value, aidx, arr );
+ }
+}
+
+
+// EXPORTS //
+
+module.exports = nanrangeBy;
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/package.json b/lib/node_modules/@stdlib/stats/array/nanrange-by/package.json
new file mode 100644
index 000000000000..e20735121026
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "@stdlib/stats/array/nanrange-by",
+ "version": "0.0.0",
+ "description": "Calculate the range of an array via a callback function, ignoring NaN values.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "statistics",
+ "stats",
+ "mathematics",
+ "math",
+ "maximum",
+ "max",
+ "range",
+ "extremes",
+ "domain",
+ "extent",
+ "array"
+ ],
+ "__stdlib__": {}
+}
diff --git a/lib/node_modules/@stdlib/stats/array/nanrange-by/test/test.js b/lib/node_modules/@stdlib/stats/array/nanrange-by/test/test.js
new file mode 100644
index 000000000000..3a7bc6da8bf0
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/array/nanrange-by/test/test.js
@@ -0,0 +1,291 @@
+/**
+* @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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
+var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
+var isSameArray = require( '@stdlib/assert/is-same-array' );
+var nanrangeBy = require( './../lib' );
+
+
+// FUNCTIONS //
+
+/**
+* Accessor function.
+*
+* @private
+* @param {number} v - value
+* @returns {(number|void)} result
+*/
+function accessor( v ) {
+ if ( v === void 0 ) {
+ return;
+ }
+ return v * 2.0;
+}
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof nanrangeBy, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function has an arity of 3', function test( t ) {
+ t.strictEqual( nanrangeBy.length, 3, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function throws an error if provided a first argument which is not an array-like object', function test( t ) {
+ var values;
+ var i;
+
+ values = [
+ '5',
+ 5,
+ NaN,
+ true,
+ false,
+ null,
+ void 0,
+ {},
+ function noop() {}
+ ];
+ for ( i = 0; i < values.length; i++ ) {
+ t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
+ }
+ t.end();
+
+ function badValue( value ) {
+ return function badValue() {
+ nanrangeBy( value );
+ };
+ }
+});
+
+tape( 'the function throws an error if provided a second argument which is not a function', function test( t ) {
+ var values;
+ var i;
+ var x;
+
+ x = [ 1.0, -2.0, -4.0, 5.0, 0.0, 3.0 ];
+ values = [
+ '5',
+ 5,
+ NaN,
+ null,
+ void 0,
+ true,
+ [],
+ {}
+ ];
+
+ for ( i = 0; i < values.length; i++ ) {
+ t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided '+values[i] );
+ }
+ t.end();
+
+ function badValue( value ) {
+ return function badValue() {
+ nanrangeBy( x, value );
+ };
+ }
+});
+
+tape( 'the function calculates the range of an array via a callback function', function test( t ) {
+ var x;
+ var v;
+
+ x = [ 1.0, -2.0, -4.0, 5.0, 0.0, 3.0, NaN, NaN ];
+ v = nanrangeBy( x, accessor );
+ t.strictEqual( v, 18.0, 'returns expected value' );
+
+ x = [ -4.0, NaN, -5.0 ];
+ v = nanrangeBy( x, accessor );
+ t.strictEqual( v, 2.0, 'returns expected value' );
+
+ x = [ -0.0, NaN, 0.0, -0.0 ];
+ v = nanrangeBy( x, accessor );
+ t.strictEqual( isPositiveZero( v ), true, 'returns expected value' );
+
+ x = [ NaN ];
+ v = nanrangeBy( x, accessor );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+
+ x = [ NaN, NaN ];
+ v = nanrangeBy( x, accessor );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function calculates the range of an array via a callback function (accessors)', function test( t ) {
+ var x;
+ var v;
+
+ x = [ 1.0, -2.0, -4.0, 5.0, 0.0, 3.0, NaN, NaN ];
+ v = nanrangeBy( toAccessorArray( x ), accessor );
+ t.strictEqual( v, 18.0, 'returns expected value' );
+
+ x = [ -4.0, NaN, -5.0 ];
+ v = nanrangeBy( toAccessorArray( x ), accessor );
+ t.strictEqual( v, 2.0, 'returns expected value' );
+
+ x = [ -0.0, NaN, 0.0, -0.0 ];
+ v = nanrangeBy( toAccessorArray( x ), accessor );
+ t.strictEqual( isPositiveZero( v ), true, 'returns expected value' );
+
+ x = [ NaN ];
+ v = nanrangeBy( toAccessorArray( x ), accessor );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+
+ x = [ NaN, NaN ];
+ v = nanrangeBy( toAccessorArray( x ), accessor );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function calculates the range of an array via a callback function (array-like object)', function test( t ) {
+ var x;
+ var v;
+
+ x = {
+ 'length': 7,
+ '0': 1.0,
+ '1': -2.0,
+ '2': -4.0,
+ '3': NaN,
+ '4': 5.0,
+ '5': 0.0,
+ '6': 3.0
+ };
+ v = nanrangeBy( x, accessor );
+ t.strictEqual( v, 18.0, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function supports providing a callback execution context', function test( t ) {
+ var expected;
+ var indices;
+ var values;
+ var arrays;
+ var ctx;
+ var x;
+
+ x = [ 1.0, 2.0, 3.0, NaN, 4.0, 5.0 ];
+ ctx = {
+ 'count': 0
+ };
+ indices = [];
+ values = [];
+ arrays = [];
+ nanrangeBy( x, accessor, ctx );
+
+ t.strictEqual( ctx.count, x.length, 'returns expected value' );
+
+ expected = [ 0, 1, 2, 3, 4, 5 ];
+ t.deepEqual( indices, expected, 'returns expected value' );
+
+ expected = [ 1.0, 2.0, 3.0, NaN, 4.0, 5.0 ];
+ t.strictEqual( isSameArray( values, expected ), true, 'returns expected value' );
+
+ expected = [ x, x, x, x, x, x ];
+ t.deepEqual( arrays, expected, 'returns expected value' );
+ t.end();
+
+ function accessor( v, idx, arr ) {
+ this.count += 1; // eslint-disable-line no-invalid-this
+ indices.push( idx );
+ values.push( v );
+ arrays.push( arr );
+ return v * 2.0;
+ }
+});
+
+tape( 'the function supports providing a callback execution context (accessors)', function test( t ) {
+ var expected;
+ var indices;
+ var values;
+ var arrays;
+ var ctx;
+ var ax;
+ var x;
+
+ x = [ 1.0, 2.0, 3.0, NaN, 4.0, 5.0 ];
+ ax = toAccessorArray( x );
+ ctx = {
+ 'count': 0
+ };
+ indices = [];
+ values = [];
+ arrays = [];
+ nanrangeBy( ax, accessor, ctx );
+
+ t.strictEqual( ctx.count, x.length, 'returns expected value' );
+
+ expected = [ 0, 1, 2, 3, 4, 5 ];
+ t.deepEqual( indices, expected, 'returns expected value' );
+
+ expected = [ 1.0, 2.0, 3.0, NaN, 4.0, 5.0 ];
+ t.strictEqual( isSameArray( values, expected ), true, 'returns expected value' );
+
+ expected = [ ax, ax, ax, ax, ax, ax ];
+ t.deepEqual( arrays, expected, 'returns expected value' );
+ t.end();
+
+ function accessor( v, idx, arr ) {
+ this.count += 1; // eslint-disable-line no-invalid-this
+ indices.push( idx );
+ values.push( v );
+ arrays.push( arr );
+ return v * 2.0;
+ }
+});
+
+tape( 'if provided an empty array, the function returns `NaN`', function test( t ) {
+ var v = nanrangeBy( [], accessor );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided an empty array, the function returns `NaN` (accessors)', function test( t ) {
+ var v = nanrangeBy( toAccessorArray( [] ), accessor );
+ t.strictEqual( isnan( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided an array containing a single element, the function returns the result of applying a provided callback function to that element', function test( t ) {
+ var v = nanrangeBy( [ 1.0 ], accessor );
+ t.strictEqual( v, 0.0, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided an array containing a single element, the function returns the result of applying a provided callback function to that element (accessors)', function test( t ) {
+ var v = nanrangeBy( toAccessorArray( [ 1.0 ] ), accessor );
+ t.strictEqual( v, 0.0, 'returns expected value' );
+ t.end();
+});