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.
38 lines
594 B
38 lines
594 B
4 weeks ago
|
# street
|
||
|
|
||
|
```js
|
||
|
// usage
|
||
|
chance.street()
|
||
|
chance.street({country:it})
|
||
|
```
|
||
|
|
||
|
Generate a random street
|
||
|
|
||
|
```js
|
||
|
chance.street();
|
||
|
=> 'Tesca Circle'
|
||
|
```
|
||
|
|
||
|
Optionally mandate that it returns a short suffix
|
||
|
|
||
|
```js
|
||
|
chance.street({short_suffix: true});
|
||
|
=> 'Jiled St'
|
||
|
```
|
||
|
|
||
|
Optionally specify the number of syllables used to generate the street name
|
||
|
|
||
|
```js
|
||
|
chance.street({syllables: 8});
|
||
|
=> 'Teniefitinusewjircor Junction'
|
||
|
```
|
||
|
|
||
|
Optionally specify a country to localize street prefixes
|
||
|
|
||
|
```js
|
||
|
chance.street({country: 'it'});
|
||
|
=> 'Via Nefba'
|
||
|
```
|
||
|
|
||
|
Note, currently support for country is limited to: `'us', 'it'`.
|