MCPcopy Index your code
hub / github.com/StarpTech/FastGraph / append

Method append

src/test-utils.ts:218–222  ·  view source on GitHub ↗
(key: string, val: string)

Source from the content-addressed store, hash-verified

216 return super.set(key.toLowerCase(), value)
217 }
218 append(key: string, val: string) {
219 let prev = this.get(key) || ''
220 if (prev) prev += ', '
221 this.set(key, prev + val)
222 }
223}
224
225// @ts-ignore - faking it

Callers 2

apqFunction · 0.95
graphqlFunction · 0.95

Calls 2

getMethod · 0.95
setMethod · 0.95

Tested by

no test coverage detected