Skip to content

Commit 50292da

Browse files
chore: fix JavaScript lint errors stdlib-js#8894
--- 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: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - 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 e964c37 commit 50292da

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/assert/is-data-property-in/examples

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/assert/is-data-property-in/examples/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ var bool = isDataPropertyIn( [ 'a' ], 'length' );
2626
console.log( bool );
2727
// => true
2828

29-
bool = isDataPropertyIn( { 'a': 'b' }, 'a' );
29+
bool = isDataPropertyIn({ 'a': 'b' }, 'a' );
3030
console.log( bool );
3131
// => true
3232

3333
bool = isDataPropertyIn( [ 'a' ], 0 );
3434
console.log( bool );
3535
// => true
3636

37-
bool = isDataPropertyIn( { 'null': false }, null );
37+
bool = isDataPropertyIn({ 'null': false }, null );
3838
console.log( bool );
3939
// => true
4040

41-
bool = isDataPropertyIn( { '[object Object]': false }, {} );
41+
bool = isDataPropertyIn({ '[object Object]': false }, {} );
4242
console.log( bool );
4343
// => true
4444

0 commit comments

Comments
 (0)