MCPcopy Index your code
hub / github.com/simstudioai/sim / decodeContent

Function decodeContent

apps/sim/app/api/tools/appconfig/utils.ts:57–60  ·  view source on GitHub ↗
(content?: Uint8Array)

Source from the content-addressed store, hash-verified

55const textDecoder = new TextDecoder()
56
57function decodeContent(content?: Uint8Array): string {
58 if (!content || content.length === 0) return ''
59 return textDecoder.decode(content)
60}
61
62export async function listApplications(
63 client: AppConfigClient,

Callers 2

getConfigurationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected