UNPKG

380 BMarkdownView Raw
1# tv
2
3```js
4// usage
5chance.tv()
6chance.tv({side: 'west'})
7```
8
9Generate a TV station call sign. This is an alias for `radio()` since they both
10follow the same rules.
11
12```js
13chance.radio();
14=> 'WXTY'
15```
16
17Optionally specify a side of the Mississippi River to limit stations to that side.
18
19```js
20chance.radio({side: 'west'});
21=> 'KCYL'
22
23chance.radio({side: 'west'});
24=> 'KQDV'
25```