RC-25 | Initialize the Hero Summary Sheet application

This commit is contained in:
Oliver-Akins 2024-12-20 00:19:58 -07:00
parent 2fc3b86792
commit b10535eceb
7 changed files with 155 additions and 1 deletions

7
module/consts.mjs Normal file
View file

@ -0,0 +1,7 @@
// MARK: filePath
export function filePath(path) {
if (path.startsWith(`/`)) {
path = path.slice(1);
};
return `systems/ripcrypt/${path}`;
};