Skip to content

Commit 787e491

Browse files
committed
fix: resolve error in string interpolation
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9880cf4 commit 787e491

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/_tools/github/rank-users/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/_tools/github/rank-users/lib/validate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var methods = require( './methods.json' );
3030

3131
// VARIABLES //
3232

33-
var METHODS = keys( methods ).join( ',' );
33+
var METHODS = keys( methods ).join( '", "' );
3434

3535

3636
// MAIN //
@@ -67,7 +67,7 @@ function validate( opts, options ) {
6767
return new TypeError( format( 'invalid option. `%s` option must be a string. Option: `%s`.', 'method', opts.method ) );
6868
}
6969
if ( methods[ opts.method ] === void 0 ) {
70-
return new Error( format( 'invalid option. Unrecognized `%s` option. Must be one of the following: "%s". Option: `%s`.', 'method', METHODS.join( '", "' ), opts.method ) );
70+
return new Error( format( 'invalid option. Unrecognized `%s` option. Must be one of the following: "%s". Option: `%s`.', 'method', METHODS, opts.method ) );
7171
}
7272
}
7373
return null;

0 commit comments

Comments
 (0)