| 117 | }; |
| 118 | |
| 119 | export const findRealParent = firstVueParent => { |
| 120 | let found = false; |
| 121 | while (firstVueParent && !found) { |
| 122 | if (firstVueParent.mapObject === undefined) { |
| 123 | firstVueParent = firstVueParent.$parent; |
| 124 | } else { |
| 125 | found = true; |
| 126 | } |
| 127 | } |
| 128 | return firstVueParent; |
| 129 | }; |
no outgoing calls
no test coverage detected