6 lines
84 B
JavaScript
6 lines
84 B
JavaScript
function isError(value) {
|
|
return value instanceof Error;
|
|
}
|
|
|
|
export { isError };
|