(value)
| 3140 | } |
| 3141 | |
| 3142 | function isObject(value) { |
| 3143 | // Avoid a V8 JIT bug in Chrome 19-20. |
| 3144 | // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. |
| 3145 | var type = typeof value; |
| 3146 | return type === 'function' || (!!value && type === 'object'); |
| 3147 | } |
| 3148 | |
| 3149 | function arrayIndexOf(arr, value) { |
| 3150 | if (arr.indexOf) { |
no outgoing calls
no test coverage detected
searching dependent graphs…