Skip to content

Commit 2b9fdf2

Browse files
authored
style: disable lint rule
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 0286482 commit 2b9fdf2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • lib/node_modules/@stdlib/assert/has-property/examples

lib/node_modules/@stdlib/assert/has-property/examples/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing */
2020

2121
'use strict';
2222

2323
var hasProp = require( './../lib' );
2424

25-
var bool = hasProp({ 'a': 'b' }, 'a' );
25+
var bool = hasProp( { 'a': 'b' }, 'a' );
2626
console.log( bool );
2727
// => true
2828

2929
bool = hasProp( {}, 'hasOwnProperty' );
3030
console.log( bool );
3131
// => true
3232

33-
bool = hasProp({ 'a': 'b' }, 'c' );
33+
bool = hasProp( { 'a': 'b' }, 'c' );
3434
console.log( bool );
3535
// => false
3636

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

@@ -46,10 +46,10 @@ bool = hasProp( void 0, 'a' );
4646
console.log( bool );
4747
// => false
4848

49-
bool = hasProp({ 'null': false }, null );
49+
bool = hasProp( { 'null': false }, null );
5050
console.log( bool );
5151
// => true
5252

53-
bool = hasProp({ '[object Object]': false }, {} );
53+
bool = hasProp( { '[object Object]': false }, {} );
5454
console.log( bool );
5555
// => true

0 commit comments

Comments
 (0)