(e)
| 11076 | exports.isDate = isDate; |
| 11077 | |
| 11078 | function isError(e) { |
| 11079 | return isObject(e) && (objectToString(e) === '[object Error]' || e instanceof Error); |
| 11080 | } |
| 11081 | exports.isError = isError; |
| 11082 | |
| 11083 | function isFunction(arg) { |
no test coverage detected