File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ export default [
2+ 'Adams County' ,
3+ 'Calhoun County' ,
4+ 'Carroll County' ,
5+ 'Clark County' ,
6+ 'Clay County' ,
7+ 'Crawford County' ,
8+ 'Douglas County' ,
9+ 'Fayette County' ,
10+ 'Franklin County' ,
11+ 'Grant County' ,
12+ 'Greene County' ,
13+ 'Hamilton County' ,
14+ 'Hancock County' ,
15+ 'Henry County' ,
16+ 'Jackson County' ,
17+ 'Jefferson County' ,
18+ 'Johnson County' ,
19+ 'Lake County' ,
20+ 'Lawrence County' ,
21+ 'Lee County' ,
22+ 'Lincoln County' ,
23+ 'Logan County' ,
24+ 'Madison County' ,
25+ 'Marion County' ,
26+ 'Marshall County' ,
27+ 'Monroe County' ,
28+ 'Montgomery County' ,
29+ 'Morgan County' ,
30+ 'Perry County' ,
31+ 'Pike County' ,
32+ 'Polk County' ,
33+ 'Scott County' ,
34+ 'Union County' ,
35+ 'Warren County' ,
36+ 'Washington County' ,
37+ 'Wayne County' ,
38+ ] ;
Original file line number Diff line number Diff line change 44 */
55import type { LocationDefinitions } from '../../..' ;
66import city from './city' ;
7+ import county from './county' ;
78import default_country from './default_country' ;
89import postcode_by_state from './postcode_by_state' ;
910import street from './street' ;
1011
1112const location : LocationDefinitions = {
1213 city,
14+ county,
1315 default_country,
1416 postcode_by_state,
1517 street,
Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ export class LocationModule {
240240 *
241241 * @example
242242 * fakerEN_GB.location.county() // 'Cambridgeshire'
243+ * fakerEN_US.location.county() // 'Monroe County'
243244 *
244245 * @since 8.0.0
245246 */
You can’t perform that action at this time.
0 commit comments