From 3c16fb919a76946bb133fa2b5c9b8cea3951b855 Mon Sep 17 00:00:00 2001 From: Stanislav Iliev Date: Thu, 22 Feb 2018 23:41:16 +0200 Subject: [PATCH] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index cfe15721..b1a768db 100644 --- a/README.md +++ b/README.md @@ -184,9 +184,12 @@ Option | Type | Default Value | Description | | year | string | - | - | | month | string | - | Must be lowercase and in MMMM format | | day | string | - | - | +| country | string | - | Must be capitalized (`'Brazil'`, `'France'` etc) ```javascript // If you don't provide a filter the latest ranking will be parsed +HLTV.getTeamRanking() +HLTV.getTeamRanking({country: 'Thailand'}) HLTV.getTeamRanking({year: '2017', month: 'may', day: '29'}).then((res) => { ... })