Installation and Setup
npm install division-rankconst RankSystem = require('division-rank');const initialDivisions = [ { name: 'Gold', options: { minPoints: 1000, maxPoints: 2000 } }, { name: 'Silver', options: { minPoints: 500, maxPoints: 999 } } ]; const rankSystem = new RankSystem(initialDivisions);
Configuration
Last updated