MCPcopy Index your code
hub / github.com/smallfawn/QLScriptPublic / getdata

Method getdata

jlld.js:298–312  ·  view source on GitHub ↗
(t)

Source from the content-addressed store, hash-verified

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)) {

Callers

nothing calls this directly

Calls 2

getvalMethod · 0.45
lodash_getMethod · 0.45

Tested by

no test coverage detected