(e)
| 1302 | exports.isDate = isDate; |
| 1303 | |
| 1304 | function isError(e) { |
| 1305 | return isObject(e) && |
| 1306 | (objectToString(e) === '[object Error]' || e instanceof Error); |
| 1307 | } |
| 1308 | exports.isError = isError; |
| 1309 | |
| 1310 | function isFunction(arg) { |
no test coverage detected