(value)
| 100 | } |
| 101 | |
| 102 | function isObject(value) { |
| 103 | // Avoid a V8 JIT bug in Chrome 19-20. |
| 104 | // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. |
| 105 | var type = typeof value; |
| 106 | return type === 'function' || (!!value && type == 'object'); |
| 107 | } |
| 108 | |
| 109 | })(); |
no outgoing calls
no test coverage detected
searching dependent graphs…