MCPcopy Create free account
hub / github.com/Zoo-Code-Org/Zoo-Code / objectToUrlEncoded

Function objectToUrlEncoded

src/api/providers/qwen-code.ts:49–53  ·  view source on GitHub ↗
(data: Record<string, string>)

Source from the content-addressed store, hash-verified

47}
48
49function objectToUrlEncoded(data: Record<string, string>): string {
50 return Object.keys(data)
51 .map((key) => `${encodeURIComponent(key)}=${encodeURIComponent(data[key])}`)
52 .join("&")
53}
54
55export class QwenCodeHandler extends BaseProvider implements SingleCompletionHandler {
56 protected options: QwenCodeHandlerOptions

Callers 1

doRefreshAccessTokenMethod · 0.85

Calls 1

keysMethod · 0.65

Tested by

no test coverage detected