summaryrefslogtreecommitdiff
path: root/src/node_modules/chance/docs/miscellaneous/tv.md
blob: 24a8d41ce7b6085890c7da01e988e3e239639f42 (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
# tv

```js
// usage
chance.tv()
chance.tv({side: 'west'})
```

Generate a TV station call sign. This is an alias for `radio()` since they both
follow the same rules.

```js
chance.radio();
=> 'WXTY'
```

Optionally specify a side of the Mississippi River to limit stations to that side.

```js
chance.radio({side: 'west'});
=> 'KCYL'

chance.radio({side: 'west'});
=> 'KQDV'
```