You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
336 B
24 lines
336 B
4 weeks ago
|
# country
|
||
|
|
||
|
```js
|
||
|
// usage
|
||
|
chance.country()
|
||
|
chance.country({ full: true })
|
||
|
```
|
||
|
|
||
|
Return a random country.
|
||
|
|
||
|
```js
|
||
|
chance.country();
|
||
|
=> 'LT'
|
||
|
```
|
||
|
|
||
|
By default, returns only the 2 letter ISO 3166-1 code for the country.
|
||
|
|
||
|
Optionally specify that it ought to return a full country name.
|
||
|
|
||
|
```js
|
||
|
chance.country({ full: true });
|
||
|
=> 'Venezuela'
|
||
|
```
|