Add some utils and update the memory database to "store" rows

This commit is contained in:
Oliver-Akins 2025-04-27 21:32:35 -06:00
parent 9694d72dd0
commit 6b35c10106
4 changed files with 220 additions and 60 deletions

View file

@ -1,6 +1,11 @@
// Apps
import { StatsViewer } from "./Apps/StatsViewer.mjs";
import { TestApp } from "./Apps/TestApp.mjs";
// Utils
import { filterPrivateRows } from "./utils/filterPrivateRows.mjs";
import { validateValue } from "./utils/validateValue.mjs";
const { deepFreeze } = foundry.utils;
Object.defineProperty(
@ -12,6 +17,10 @@ Object.defineProperty(
TestApp,
StatsViewer,
},
utils: {
filterPrivateRows,
validateValue,
},
}),
writable: false,
},