diff --git a/spec.html b/spec.html index dc2f9a0a6d..3e6904417c 100644 --- a/spec.html +++ b/spec.html @@ -31212,6 +31212,16 @@

Properties of the Error Constructor

  • has the following properties:
  • + +

    Error.isError ( _arg_ )

    +

    This function performs the following steps when called:

    + + 1. If _arg_ is not an Object, return *false*. + 1. If _arg_ does not have an [[ErrorData]] internal slot, return *false*. + 1. Return *true*. + +
    +

    Error.prototype

    The initial value of `Error.prototype` is the Error prototype object.