(re)
| 11061 | exports.isUndefined = isUndefined; |
| 11062 | |
| 11063 | function isRegExp(re) { |
| 11064 | return isObject(re) && objectToString(re) === '[object RegExp]'; |
| 11065 | } |
| 11066 | exports.isRegExp = isRegExp; |
| 11067 | |
| 11068 | function isObject(arg) { |
no test coverage detected