* @memberOf module:zrender/core/util * @param {*} value * @return {boolean}
(value)
| 691 | * @return {boolean} |
| 692 | */ |
| 693 | function isObject$1(value) { |
| 694 | // Avoid a V8 JIT bug in Chrome 19-20. |
| 695 | // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. |
| 696 | var type = typeof value; |
| 697 | return type === 'function' || (!!value && type === 'object'); |
| 698 | } |
| 699 | |
| 700 | /** |
| 701 | * @memberOf module:zrender/core/util |
no outgoing calls
no test coverage detected