0.2.0 • Published 8 years ago

csgo-rank v0.2.0

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

CSGO Rank Converter

A small library that allows you to convert integers to CSGO ranks and vice versa, useful in APIs where an integer is provided for a rank.

Installation

npm install csgo-rank

Usage

var csgorank = require('csgo-rank');
console.log(csgorank.RankToID("Silver 1"));
console.log(csgorank.IDToRank(1));

Tests

npm test