blob: 5d14db4d2e3b578f91e96d552284875053a634ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# locale
```js
// usage
chance.locale()
chance.locale({region: true})
```
Generate a random ISO-639-1 language code
```js
chance.locale();
=> 'ca'
```
Generate a random IETF region code
```js
chance.locale({region: true});
=> 'es-EA'
```
_Note, the language codes comes from the [ISO-639-1 spec](http://www.loc.gov/standards/iso639-2/php/code_list.php)
and the region codes come from [IETF standard](http://data.okfn.org/data/core/language-codes#resource-language-codes-full)_
|