Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
chore: fix JavaScript lint errors (issue #8043)
  • Loading branch information
rajanarahul93 committed Sep 14, 2025
commit dbbbba3b2f4c7a1f105d73ce8894b5badea57235
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var isString = require( '@stdlib/assert/is-string' ).isPrimitive;

// VARIABLES //

var RE = /^[\u0009\u000A\u000B\u000C\u000D\u0020\u0085\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]*$/;
var RE = /^[\t\n\v\f\r\u0020\u0085\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]*$/;
Comment thread
kgryte marked this conversation as resolved.
Outdated


// MAIN //
Expand Down
27 changes: 15 additions & 12 deletions lib/node_modules/@stdlib/cli/ctor/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,23 @@
* @module @stdlib/cli/ctor
*
* @example
* var CLI = require( '@stdlib/cli/ctor' );
*
* var opts = {
* 'pkg': require( './path/to/package.json' ),
* 'help': 'Usage: beep [options] <boop>',
* 'title': 'foo',
* 'updates': true,
* 'options': {
* 'boolean': [
* 'help',
* 'version'
* ]
* }
* 'pkg': {
Comment thread
kgryte marked this conversation as resolved.
Outdated
* 'name': 'beep',
* 'version': '0.0.0'
* },
* 'help': 'Usage: beep [options] <boop>',
* 'title': 'foo',
* 'updates': true,
* 'options': {
* 'boolean': [
* 'help',
* 'version'
* ]
* }
* };
* var CLI = require( '@stdlib/cli/ctor' );
*
* var cli = new CLI( opts );
* // returns <CLI>
*
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/utils/zip/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ function zip() {
}
}
}
out = new Array( len );
out = [];
Comment thread
kgryte marked this conversation as resolved.
for ( j = 0; j < len; j++ ) {
// Temporary array to store tuples...
arr = new Array( nargs );
arr = [];

// Create the tuples...
for ( i = 0; i < nargs; i++ ) {
Expand Down