mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
31 lines
824 B
JavaScript
31 lines
824 B
JavaScript
import getTag from './.internal/getTag.js'
|
|
import isObjectLike from './isObjectLike.js'
|
|
import isPlainObject from './isPlainObject.js'
|
|
|
|
/**
|
|
* Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`,
|
|
* `SyntaxError`, `TypeError`, or `URIError` object.
|
|
*
|
|
* @since 3.0.0
|
|
* @category Lang
|
|
* @param {*} value The value to check.
|
|
* @returns {boolean} Returns `true` if `value` is an error object, else `false`.
|
|
* @example
|
|
*
|
|
* isError(new Error)
|
|
* // => true
|
|
*
|
|
* isError(Error)
|
|
* // => false
|
|
*/
|
|
function isError(value) {
|
|
if (!isObjectLike(value)) {
|
|
return false
|
|
}
|
|
const tag = getTag(value)
|
|
return tag == '[object Error]' || tag == '[object DOMException]' ||
|
|
(typeof value.message === 'string' && typeof value.name === 'string' && !isPlainObject(value))
|
|
}
|
|
|
|
export default isError
|