(e)
| 4448 | exports.isDate = isDate; |
| 4449 | |
| 4450 | function isError(e) { |
| 4451 | return isObject(e) && |
| 4452 | (objectToString(e) === '[object Error]' || e instanceof Error); |
| 4453 | } |
| 4454 | exports.isError = isError; |
| 4455 | |
| 4456 | function isFunction(arg) { |
no test coverage detected