(t)
| 170 | t) |
| 171 | } |
| 172 | getdata(t) { |
| 173 | let e = this.getval(t) |
| 174 | if (/^@/.test(t)) { |
| 175 | const [, s, a] = /^@(.*?)\.(.*?)$/.exec(t), |
| 176 | r = s ? this.getval(s) : '' |
| 177 | if (r) |
| 178 | try { |
| 179 | const t = JSON.parse(r) |
| 180 | e = t ? this.lodash_get(t, a, '') : e |
| 181 | } catch (t) { |
| 182 | e = '' |
| 183 | } |
| 184 | } |
| 185 | return e |
| 186 | } |
| 187 | setdata(t, e) { |
| 188 | let s = !1 |
| 189 | if (/^@/.test(e)) { |
no test coverage detected