(own, prop)
| 10 | } |
| 11 | } |
| 12 | function hasOwn(own, prop) { |
| 13 | return own.hasOwnProperty(prop); |
| 14 | } |
| 15 | function isObject(value) { |
| 16 | var type = typeof value; |
| 17 | return type === 'function' || (!!value && type === 'object'); |
no outgoing calls
no test coverage detected
searching dependent graphs…