From 1041eecc58b219df70a241650c344fa6fc15a361 Mon Sep 17 00:00:00 2001 From: Kamal Singh Rautela Date: Sat, 21 Feb 2026 20:24:41 +0530 Subject: [PATCH] chore: fix JavaScript lint errors (issue #10400) --- .../@stdlib/assert/has-property/examples/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/assert/has-property/examples/index.js b/lib/node_modules/@stdlib/assert/has-property/examples/index.js index 131d9edbddf9..99358e61522b 100644 --- a/lib/node_modules/@stdlib/assert/has-property/examples/index.js +++ b/lib/node_modules/@stdlib/assert/has-property/examples/index.js @@ -22,19 +22,19 @@ var hasProp = require( './../lib' ); -var bool = hasProp( { 'a': 'b' }, 'a' ); +var bool = hasProp({ 'a': 'b' }, 'a' ); console.log( bool ); // => true -bool = hasProp( {}, 'hasOwnProperty' ); +bool = hasProp({}, 'hasOwnProperty' ); console.log( bool ); // => true -bool = hasProp( { 'a': 'b' }, 'c' ); +bool = hasProp({ 'a': 'b' }, 'c' ); console.log( bool ); // => false -bool = hasProp( { 'a': 'b' }, null ); +bool = hasProp({ 'a': 'b' }, null ); console.log( bool ); // => false @@ -46,10 +46,10 @@ bool = hasProp( void 0, 'a' ); console.log( bool ); // => false -bool = hasProp( { 'null': false }, null ); +bool = hasProp({ 'null': false }, null ); console.log( bool ); // => true -bool = hasProp( { '[object Object]': false }, {} ); +bool = hasProp({ '[object Object]': false }, {} ); console.log( bool ); // => true