(re)
| 6571 | exports.isUndefined = isUndefined; |
| 6572 | |
| 6573 | function isRegExp(re) { |
| 6574 | return isObject(re) && objectToString(re) === '[object RegExp]'; |
| 6575 | } |
| 6576 | exports.isRegExp = isRegExp; |
| 6577 | |
| 6578 | function isObject(arg) { |
no test coverage detected