File tree 4 files changed +8
-0
lines changed
4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change
1
+ // [ISO_3166-1](https://en.wikipedia.org/wiki/ISO_3166-1)
2
+ export default [ { alpha2 : 'CA' , alpha3 : 'CAN' , numeric : '124' } ] ;
Original file line number Diff line number Diff line change 5
5
import type { LocationDefinition } from '../../..' ;
6
6
import city_name from './city_name' ;
7
7
import city_pattern from './city_pattern' ;
8
+ import country_code from './country_code' ;
8
9
import postcode from './postcode' ;
9
10
import postcode_by_state from './postcode_by_state' ;
10
11
import state from './state' ;
@@ -14,6 +15,7 @@ import street_pattern from './street_pattern';
14
15
const location : LocationDefinition = {
15
16
city_name,
16
17
city_pattern,
18
+ country_code,
17
19
postcode,
18
20
postcode_by_state,
19
21
state,
Original file line number Diff line number Diff line change
1
+ // [ISO_3166-1](https://en.wikipedia.org/wiki/ISO_3166-1)
2
+ export default [ { alpha2 : 'CA' , alpha3 : 'CAN' , numeric : '124' } ] ;
Original file line number Diff line number Diff line change 4
4
*/
5
5
import type { LocationDefinition } from '../../..' ;
6
6
import city_pattern from './city_pattern' ;
7
+ import country_code from './country_code' ;
7
8
import postcode from './postcode' ;
8
9
import state from './state' ;
9
10
import state_abbr from './state_abbr' ;
10
11
import street_pattern from './street_pattern' ;
11
12
12
13
const location : LocationDefinition = {
13
14
city_pattern,
15
+ country_code,
14
16
postcode,
15
17
state,
16
18
state_abbr,
You can’t perform that action at this time.
0 commit comments