Skip to content
Permalink
0347b72305
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Robert Brignull replace jest with ava
Latest commit 0347b72 May 4, 2020 History
0 contributors

Users who have contributed to this file

23 lines (21 sloc) 598 Bytes
'use strict';
var objectToString = Object.prototype.toString;
var getPrototypeOf = Object.getPrototypeOf;
var ERROR_TYPE = '[object Error]';
module.exports = function isError(err) {
if (typeof err !== 'object') {
return false;
}
if (err instanceof Error) {
// Accept `AssertionError`s from the `assert` module that ships
// with Node.js v6.1.0, compare issue #4.
return true;
}
while (err) {
if (objectToString.call(err) === ERROR_TYPE) {
return true;
}
err = getPrototypeOf(err);
}
return false;
};