Skip to content

Commit 20b2db8

Browse files
committed
Disable lint rule
1 parent a938be4 commit 20b2db8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/assert/is-boolean/test/test.object.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ tape( 'main export is a function', function test( t ) {
4343
});
4444

4545
tape( 'the function returns `true` if provided a boolean object', function test( t ) {
46-
t.equal( isBoolean( new Boolean( false ) ), true, 'returns true' );
47-
t.equal( isBoolean( new Boolean( true ) ), true, 'returns true' );
46+
t.equal( isBoolean( new Boolean( false ) ), true, 'returns true' ); // eslint-disable-line no-new-wrappers
47+
t.equal( isBoolean( new Boolean( true ) ), true, 'returns true' ); // eslint-disable-line no-new-wrappers
4848
t.end();
4949
});
5050

@@ -88,7 +88,7 @@ tape( 'if `Symbol.toStringTag` is not supported, the function attempts to determ
8888
'@stdlib/utils/detect-tostringtag-support': detect
8989
});
9090

91-
t.equal( isBoolean( new Boolean( true ) ), true, 'returns true' );
91+
t.equal( isBoolean( new Boolean( true ) ), true, 'returns true' ); // eslint-disable-line no-new-wrappers
9292
t.equal( isBoolean( {} ), false, 'returns false' );
9393

9494
t.end();
@@ -107,7 +107,7 @@ tape( 'the function returns `false` if not provided a boolean', function test( t
107107
null,
108108
5,
109109
NaN,
110-
undefined,
110+
void 0,
111111
[],
112112
{},
113113
new Date(),

0 commit comments

Comments
 (0)