Skip to content

Commit e90342b

Browse files
committed
Disable lint rule
1 parent 30b61f6 commit e90342b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ tape( 'the function returns `true` if provided a primitive boolean', function te
3939
});
4040

4141
tape( 'the function returns `false` if provided a boolean object', function test( t ) {
42-
t.equal( isBoolean( new Boolean( true ) ), false, 'returns false' );
43-
t.equal( isBoolean( new Boolean( false ) ), false, 'returns false' );
42+
t.equal( isBoolean( new Boolean( true ) ), false, 'returns false' ); // eslint-disable-line no-new-wrappers
43+
t.equal( isBoolean( new Boolean( false ) ), false, 'returns false' ); // eslint-disable-line no-new-wrappers
4444
t.end();
4545
});
4646

@@ -53,7 +53,7 @@ tape( 'the function returns `false` if not provided a boolean', function test( t
5353
null,
5454
5,
5555
NaN,
56-
undefined,
56+
void 0,
5757
[],
5858
{},
5959
function noop() {}

0 commit comments

Comments
 (0)