(re)
| 1287 | exports.isUndefined = isUndefined; |
| 1288 | |
| 1289 | function isRegExp(re) { |
| 1290 | return isObject(re) && objectToString(re) === '[object RegExp]'; |
| 1291 | } |
| 1292 | exports.isRegExp = isRegExp; |
| 1293 | |
| 1294 | function isObject(arg) { |
no test coverage detected