MCPcopy Create free account
hub / github.com/vercel/vercel / getStringConstant

Function getStringConstant

packages/python-analysis/src/semantic/entrypoints.ts:77–83  ·  view source on GitHub ↗
(
  source: string,
  name: string
)

Source from the content-addressed store, hash-verified

75 * @returns The string value or null
76 */
77export async function getStringConstant(
78 source: string,
79 name: string
80): Promise<string | null> {
81 const mod = await importWasmModule();
82 return mod.getStringConstant(source, name) ?? null;
83}

Callers

nothing calls this directly

Calls 1

importWasmModuleFunction · 0.90

Tested by

no test coverage detected