()
| 28 | const ob = target.__ob__ |
| 29 | |
| 30 | function ssrMockReactivity() { |
| 31 | // in SSR, there is no __ob__. Mock for reactivity check |
| 32 | if (ob && isObject(val) && !hasOwn(val, '__ob__')) { |
| 33 | mockReactivityDeep(val) |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | if (isArray(target)) { |
| 38 | if (isValidArrayIndex(key)) { |
no test coverage detected
searching dependent graphs…