* Strict object type check. Only returns true * for plain JavaScript objects.
(obj)
| 66 | * for plain JavaScript objects. |
| 67 | */ |
| 68 | function isPlainObject (obj) { |
| 69 | return _toString.call(obj) === '[object Object]' |
| 70 | } |
| 71 | |
| 72 | function isRegExp (v) { |
| 73 | return _toString.call(v) === '[object RegExp]' |
no outgoing calls
no test coverage detected