(re)
| 4433 | exports.isUndefined = isUndefined; |
| 4434 | |
| 4435 | function isRegExp(re) { |
| 4436 | return isObject(re) && objectToString(re) === '[object RegExp]'; |
| 4437 | } |
| 4438 | exports.isRegExp = isRegExp; |
| 4439 | |
| 4440 | function isObject(arg) { |
no test coverage detected