MCPcopy
hub / github.com/EutropicAI/Final2x / getAllPath

Method getAllPath

src/renderer/src/utils/IOPath.ts:49–57  ·  view source on GitHub ↗

* @description Get all inputpath from inputpathMap * @returns inputpathMap with string

()

Source from the content-addressed store, hash-verified

47 * @returns inputpathMap with string
48 */
49 static getAllPath(): string {
50 const { inputpathMap } = storeToRefs(useIOPathStore())
51 // return inputpath key and value with string
52 let inputpath = ''
53 inputpathMap.value.forEach((value, key) => {
54 inputpath += `${key} : ${value}\n`
55 })
56 return inputpath
57 }
58
59 /**
60 * @description Get all inputpath from inputpathMap

Callers 1

IOPath.test.tsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected