Skip to content

Commit 7849e6f

Browse files
committed
style: remove semicolons after function declarations
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent b3817aa commit 7849e6f

File tree

3 files changed

+3
-3
lines changed
  • lib/node_modules/@stdlib

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/object/none-in-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var format = require( '@stdlib/string/format' );
4040
* @example
4141
* function isPositive( v ) {
4242
* return ( v > 0 );
43-
* };
43+
* }
4444
*
4545
* var obj = { 'a' : -1, 'b' : -2, 'c' : -3, 'd' : -4};
4646
*

lib/node_modules/@stdlib/symbol/has-instance/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* '1': 2,
3535
* '2': 3
3636
* };
37-
* };
37+
* }
3838
*
3939
* ArrayLike[ HasInstanceSymbol ] = isArray;
4040
*/

lib/node_modules/@stdlib/utils/none-own-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var format = require( '@stdlib/string/format' );
4141
* @example
4242
* function isUnderage( age ) {
4343
* return ( age < 18 );
44-
* };
44+
* }
4545
*
4646
* var obj = {
4747
* 'a': 10,

0 commit comments

Comments
 (0)