(t)
| 296 | t); |
| 297 | } |
| 298 | getdata(t) { |
| 299 | let s = this.getval(t); |
| 300 | if (/^@/.test(t)) { |
| 301 | const [, e, i] = /^@(.*?)\.(.*?)$/.exec(t), |
| 302 | o = e ? this.getval(e) : ""; |
| 303 | if (o) |
| 304 | try { |
| 305 | const t = JSON.parse(o); |
| 306 | s = t ? this.lodash_get(t, i, "") : s; |
| 307 | } catch (t) { |
| 308 | s = ""; |
| 309 | } |
| 310 | } |
| 311 | return s; |
| 312 | } |
| 313 | setdata(t, s) { |
| 314 | let e = !1; |
| 315 | if (/^@/.test(s)) { |
nothing calls this directly
no test coverage detected