(t)
| 231 | t); |
| 232 | } |
| 233 | getdata(t) { |
| 234 | let s = this.getval(t); |
| 235 | if (/^@/.test(t)) { |
| 236 | const [, e, i] = /^@(.*?)\.(.*?)$/.exec(t), |
| 237 | o = e ? this.getval(e) : ""; |
| 238 | if (o) |
| 239 | try { |
| 240 | const t = JSON.parse(o); |
| 241 | s = t ? this.lodash_get(t, i, "") : s; |
| 242 | } catch (t) { |
| 243 | s = ""; |
| 244 | } |
| 245 | } |
| 246 | return s; |
| 247 | } |
| 248 | setdata(t, s) { |
| 249 | let e = !1; |
| 250 | if (/^@/.test(s)) { |
no test coverage detected