diff --git a/lib/node_modules/@stdlib/constants/float64/pinf/lib/index.js b/lib/node_modules/@stdlib/constants/float64/pinf/lib/index.js index 5759d844b535..8c15c27cee6a 100644 --- a/lib/node_modules/@stdlib/constants/float64/pinf/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float64/pinf/lib/index.js @@ -48,7 +48,7 @@ * @default Number.POSITIVE_INFINITY * @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985} */ -var FLOAT64_PINF = Number.POSITIVE_INFINITY; // eslint-disable-line stdlib/require-globals +var FLOAT64_PINF = Number.POSITIVE_INFINITY; // EXPORTS // diff --git a/lib/node_modules/@stdlib/math/strided/ops/sub/scripts/index.js b/lib/node_modules/@stdlib/math/strided/ops/sub/scripts/index.js index 3ce3a26da112..db489ed39731 100644 --- a/lib/node_modules/@stdlib/math/strided/ops/sub/scripts/index.js +++ b/lib/node_modules/@stdlib/math/strided/ops/sub/scripts/index.js @@ -18,8 +18,6 @@ * limitations under the License. */ -/* eslint-disable node/shebang */ - 'use strict'; // MODULES // diff --git a/lib/node_modules/@stdlib/repl/lib/regexp_require.js b/lib/node_modules/@stdlib/repl/lib/regexp_require.js index bcca0b771f2e..5b7893bcaad3 100644 --- a/lib/node_modules/@stdlib/repl/lib/regexp_require.js +++ b/lib/node_modules/@stdlib/repl/lib/regexp_require.js @@ -34,12 +34,14 @@ * var RE_REQUIRE = createRegExp(); * * var bool = RE_REQUIRE.test( 'var foo = require( "foo" );' ); +* * // returns true * * @example * var RE_REQUIRE = createRegExp(); * * var bool = RE_REQUIRE.test( 'var foo = require( "./foo.js" );' ); +* * // returns true */ function createRegExp() { diff --git a/lib/node_modules/@stdlib/utils/async/until/lib/main.js b/lib/node_modules/@stdlib/utils/async/until/lib/main.js index bc849497ab91..a5253d73c6ed 100644 --- a/lib/node_modules/@stdlib/utils/async/until/lib/main.js +++ b/lib/node_modules/@stdlib/utils/async/until/lib/main.js @@ -112,9 +112,9 @@ function untilAsync( predicate, fcn, done, thisArg ) { // Cache the most recent results... if ( arguments.length > 1 ) { - args = new Array( arguments.length-1 ); + args = []; for ( i = 1; i < arguments.length; i++ ) { - args[ i-1 ] = arguments[ i ]; + args.push( arguments[ i ] ); } } // Run the test condition: