MCPcopy Index your code
hub / github.com/dataease/SQLBot / deserialiseContent

Method deserialiseContent

frontend/public/swagger-ui-bundle.js:26254–26264  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

26252 return s && s.map ? s.map(this.serialise, this) : s
26253 }
26254 deserialiseContent(s) {
26255 if (s) {
26256 if (s.element) return this.deserialise(s)
26257 if (s.key) {
26258 const o = new this.namespace.KeyValuePair(this.deserialise(s.key))
26259 return (s.value && (o.value = this.deserialise(s.value)), o)
26260 }
26261 if (s.map) return s.map(this.deserialise, this)
26262 }
26263 return s
26264 }
26265 shouldRefract(s) {
26266 return (
26267 !!(

Callers 1

deserialiseMethod · 0.95

Calls 2

deserialiseMethod · 0.95
mapMethod · 0.45

Tested by

no test coverage detected