_.isError

_.isError(value)

Checks if value is an Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, or URIError object.

Since

3.0.0

Arguments

  1. value (*): The value to check.

Returns

(boolean): Returns true if value is an error object, else false.

Example

1
2
3
4
5
_.isError(new Error);
// => true
  
_.isError(Error);
// => false
doc_Lodash
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.