forked from zuriby/Faker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en_CA.js
78 lines (78 loc) · 1.23 KB
/
en_CA.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
var en_CA = {};
module["exports"] = en_CA;
en_CA.title = "Canada (English)";
en_CA.address = {
"postcode": [
"?#? #?#",
"?#?#?#"
],
"state": [
"Alberta",
"British Columbia",
"Manitoba",
"New Brunswick",
"Newfoundland and Labrador",
"Nova Scotia",
"Northwest Territories",
"Nunavut",
"Ontario",
"Prince Edward Island",
"Quebec",
"Saskatchewan",
"Yukon"
],
"state_abbr": [
"AB",
"BC",
"MB",
"NB",
"NL",
"NS",
"NU",
"NT",
"ON",
"PE",
"QC",
"SK",
"YK"
],
"default_country": [
"Canada"
]
};
en_CA.internet = {
"free_email": [
"gmail.com",
"yahoo.ca",
"hotmail.com"
],
"domain_suffix": [
"ca",
"com",
"biz",
"info",
"name",
"net",
"org"
]
};
en_CA.phone_number = {
"formats": [
"###-###-####",
"(###)###-####",
"###.###.####",
"1-###-###-####",
"###-###-#### x###",
"(###)###-#### x###",
"1-###-###-#### x###",
"###.###.#### x###",
"###-###-#### x####",
"(###)###-#### x####",
"1-###-###-#### x####",
"###.###.#### x####",
"###-###-#### x#####",
"(###)###-#### x#####",
"1-###-###-#### x#####",
"###.###.#### x#####"
]
};