Fixes for wasm

This commit is contained in:
Gregory Schier
2026-03-13 06:46:27 -07:00
parent b83d9e6765
commit 6cc47bea38
4 changed files with 876 additions and 185 deletions

View File

@@ -132,5 +132,3 @@ function generateId(model: string): string {
idCount[model] = (idCount[model] ?? -1) + 1;
return `GENERATE_ID::${model.toUpperCase()}_${idCount[model]}`;
}
export default plugin;