More dice stuff

This commit is contained in:
2024-08-20 17:50:10 -06:00
parent d17ff63662
commit df3171b646
10 changed files with 110 additions and 123 deletions

3
lib/utils/sum.ts Normal file
View File

@@ -0,0 +1,3 @@
export const sum = (...args: number[]) => {
return args.reduce((a, b) => a + b, 0);
};