refactor/capitalize file namesfor consistency

This commit is contained in:
SowinskiBraeden committed 2024-01-04 09:11:27 -08:00
1 parent c5324ae627
commit 970abfac9f
6 files changed
+5 -5

No files matched your search

+6
View File
@@ -0,0 +1,6 @@
module.exports = {
calculateNewCombatRating: (Ra, Rb, score) => {
const Ea = 1 / (1 + Math.pow(10, ((Rb - Ra) / 400)));
return Math.round(Ra + 32 * (score - Ea));
},
}