RC-63 | Display skills in sheet

This commit is contained in:
Oliver-Akins 2025-01-30 21:49:16 -07:00
parent df35c00c5d
commit 1302d91469
9 changed files with 142 additions and 24 deletions

View file

@ -5,3 +5,13 @@ export function filePath(path) {
};
return `systems/ripcrypt/${path}`;
};
// MARK: documentSorter
export function documentSorter(a, b) {
const sortDelta = b.sort - a.sort;
if (sortDelta !== 0) {
return sortDelta;
};
// TODO alphabetical sort
return 0;
};