* Determines if a value is a regular expression object. * * @private * @param {*} value Reference to check. * @returns {boolean} True if `value` is a `RegExp`.
(value)
| 670 | * @returns {boolean} True if `value` is a `RegExp`. |
| 671 | */ |
| 672 | function isRegExp(value) { |
| 673 | return toString.call(value) === '[object RegExp]'; |
| 674 | } |
| 675 | |
| 676 | /** |
| 677 | * Checks if `obj` is a window object. |
no outgoing calls
no test coverage detected