We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6947302 commit eaae99fCopy full SHA for eaae99f
1 file changed
lib/node_modules/@stdlib/number/uint64/ctor/test/test.js
@@ -236,8 +236,7 @@ tape( 'the constructor returns an instance which supports converting an instance
236
237
x = Uint64.from( [ 0xDEADBEEF, 0xBADF00D2 ] );
238
t.strictEqual( x.valueOf(), BigInt( '0xDEADBEEFBADF00D2' ), 'returns expected value' );
239
- }
240
- else {
+ } else {
241
x = new Uint64( 5 );
242
t.strictEqual( x.valueOf(), 5, 'returns expected value' );
243
0 commit comments