bigints.js (544B)
1 // |reftest| skip-if(!Error.isError) -- Error.isError is not enabled unconditionally 2 // Copyright (C) 2024 Jordan Harband. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-error.iserror 7 description: > 8 Returns false on bigints 9 features: [Error.isError, BigInt] 10 ---*/ 11 12 assert.sameValue(Error.isError(0n), false); 13 assert.sameValue(Error.isError(42n), false); 14 assert.sameValue(Error.isError(BigInt(0)), false); 15 assert.sameValue(Error.isError(BigInt(42)), false); 16 17 reportCompare(0, 0);