Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
* limitations under the License.
*/

/* eslint-disable node/shebang */

'use strict';

// MODULES //
Expand Down
2 changes: 2 additions & 0 deletions lib/node_modules/@stdlib/repl/lib/regexp_require.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/utils/async/until/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading