( source: string, name: string )
| 75 | * @returns The string value or null |
| 76 | */ |
| 77 | export 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 | } |
nothing calls this directly
no test coverage detected