simple-elo-rating
v1.0.0
Published
Just a really simple Elo module
Downloads
5
Readme
Simple Elo Rating
Small, easy-to-understand module for implementing Elo rating.
Installation
npm install simple-elo-rating
Usage
import { Elo } from "simple-elo-rating";
const [newScoreA, newScoreB] = new Elo()
.playerA(1500)
.playerB(1300)
.setWinnerA()
.calculate()
.getResults();