Commit 34b743a 1 parent e4d4492 commit 34b743a Copy full SHA for 34b743a
File tree 3 files changed +41
-0
lines changed
3 files changed +41
-0
lines changed 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 4
4
*/
5
5
import type { LocationDefinitions } from '../../..' ;
6
6
import city from './city' ;
7
+ import county from './county' ;
7
8
import default_country from './default_country' ;
8
9
import postcode_by_state from './postcode_by_state' ;
9
10
import street from './street' ;
10
11
11
12
const location : LocationDefinitions = {
12
13
city,
14
+ county,
13
15
default_country,
14
16
postcode_by_state,
15
17
street,
Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ export class LocationModule {
240
240
*
241
241
* @example
242
242
* fakerEN_GB.location.county() // 'Cambridgeshire'
243
+ * fakerEN_US.location.county() // 'Monroe County'
243
244
*
244
245
* @since 8.0.0
245
246
*/
You can’t perform that action at this time.
0 commit comments