UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

21 lines (20 loc) 544 B
import { getTag } from "../_internal/getTag.mjs"; //#region src/compat/predicate/isError.ts /** * Checks if `value` is an Error object. * * @param value The value to check. * @returns Returns `true` if `value` is an Error object, `false` otherwise. * * @example * ```typescript * console.log(isError(new Error())); // true * console.log(isError('Error')); // false * console.log(isError({ name: 'Error', message: '' })); // false * ``` */ function isError(value) { return getTag(value) === "[object Error]"; } //#endregion export { isError };