MCPcopy Index your code
hub / github.com/codeaashu/claude-code / generateQr

Function generateQr

src/bridge/bridgeUI.ts:37–40  ·  view source on GitHub ↗

Generate a QR code and return its lines.

(url: string)

Source from the content-addressed store, hash-verified

35
36/** Generate a QR code and return its lines. */
37async function generateQr(url: string): Promise<string[]> {
38 const qr = await qrToString(url, QR_OPTIONS)
39 return qr.split('\n').filter((line: string) => line.length > 0)
40}
41
42export function createBridgeLogger(options: {
43 verbose: boolean

Callers 1

regenerateQrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected