NAPI_EXTERN napi_status napi_is_error(napi_env env,napi_value value,bool* result);
[in] env: The environment that the API is invoked under.[in] value: Thenapi_valueto be checked.[out] result: Boolean value that is set to true ifnapi_valuerepresents an error, false otherwise.
Returns napi_ok if the API succeeded.
This API queries a napi_value to check if it represents an error object.
