Install the teslo
package.
npm install teslo
Create a Duel
and calculate elo ratings.
import { Player, Duel } from 'teslo'
// Create a duel between 2 players
const match = new Duel([new Player('1', 1000), new Player('2', 900)])
// Calculate elo ratings for player 1 win
const results = match.calculate('1')
/*
[
{
id: '1',
elo: 1012
},
{
id: '2',
elo: 888
}
]
*/
Visit teslo.dev/docs.
MIT