| bigints.js |
---
esid: sec-error.iserror
description: >
Returns false on bigints
features: [Error.isError, BigInt]
--- |
544 |
| browser.js |
|
0 |
| error-subclass.js |
---
esid: sec-error.iserror
description: >
Returns true on userland Error subclasses
features: [Error.isError, class]
--- |
1393 |
| errors-other-realm.js |
---
esid: sec-error.iserror
description: >
Returns true on Error and Error subclass instances from a different realm
features: [Error.isError, cross-realm]
--- |
1120 |
| errors.js |
---
esid: sec-error.iserror
description: >
Returns true on Error and Error subclass instances
features: [Error.isError]
--- |
990 |
| fake-errors.js |
---
esid: sec-error.iserror
description: >
Returns false on non-Error objects pretending to be an Error
features: [Error.isError]
--- |
671 |
| is-a-constructor.js |
---
esid: sec-error.iserror
description: >
Error.isError does not implement [[Construct]]
info: |
IsConstructor ( argument )
The abstract operation IsConstructor takes argument argument (an ECMAScript language value).
It determines if argument is a function object with a [[Construct]] internal method.
It performs the following steps when called:
If Type(argument) is not Object, return false.
If argument has a [[Construct]] internal method, return true.
Return false.
includes: [isConstructor.js]
features: [Error.isError, Reflect.construct]
--- |
980 |
| name.js |
---
esid: sec-error.iserror
description: >
The initial value of Error.isError.name is "isError".
features: [Error.isError]
--- |
423 |
| non-error-objects-other-realm.js |
---
esid: sec-error.iserror
description: >
Returns false on non-Error objects from a different realm
features: [Error.isError, cross-realm]
--- |
1316 |
| non-error-objects.js |
---
esid: sec-error.iserror
description: >
Returns false on non-Error objects
features: [Error.isError]
--- |
1118 |
| primitives.js |
---
esid: sec-error.iserror
description: >
Returns false on primitives
features: [Error.isError]
--- |
947 |
| prop-desc.js |
---
esid: sec-error.iserror
description: Property descriptor for Error.isError
info: |
Every other data property described in clauses 18 through 26 and in Annex B.2
has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
features: [Error.isError]
--- |
690 |
| shell.js |
|
0 |
| symbols.js |
---
esid: sec-error.iserror
description: >
Returns false on symbols
features: [Error.isError, Symbol]
--- |
402 |