()
| 610 | * (for optional WASM support with JS fallback) |
| 611 | */ |
| 612 | export async function tryCreateWasmReconstruction(): Promise<WasmReconstructionWrapper | null> { |
| 613 | try { |
| 614 | return await createWasmReconstruction(); |
| 615 | } catch { |
| 616 | return null; |
| 617 | } |
| 618 | } |
nothing calls this directly
no test coverage detected