forked from zuriby/Faker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nusrath Khan
committed
Jul 7, 2017
1 parent
6cdb93e
commit d974be3
Showing
22 changed files
with
449 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,6 +254,7 @@ faker.locale = "de"; | |
* en_IE | ||
* en_IND | ||
* en_US | ||
* en_ZA | ||
* en_au_ocker | ||
* es | ||
* es_MX | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module["exports"] = [ | ||
"#{city_prefix}" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module["exports"] = [ | ||
"Polokwane", | ||
"Johannesburg", | ||
"Pretoria", | ||
"Tshwane", | ||
"Durban", | ||
"Pietermaritzburg", | ||
"Nelspruit", | ||
"Cape Town", | ||
"Stellenbosch", | ||
"Port Elizabeth", | ||
"East London", | ||
"Kimberley", | ||
"Rustenburg", | ||
"Bloemfontein " | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module["exports"] = [ | ||
"South Africa", | ||
"The Republic of South Africa", | ||
"SA" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var address = {}; | ||
module['exports'] = address; | ||
address.city = require("./city"); | ||
address.city_prefix = require("./city_prefix"); | ||
address.default_country = require("./default_country"); | ||
address.postcode = require("./postcode"); | ||
address.state = require("./state"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module["exports"] = [ | ||
"####" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module["exports"] = [ | ||
"Limpopo", | ||
"Gauteng", | ||
"Free State,", | ||
"North West", | ||
"Northern Cape", | ||
"Western Cape,", | ||
"KwaZulu-Natal", | ||
"Mpumalanga", | ||
"Eastern Cape" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module["exports"] = [ | ||
"+2760 ### ####", | ||
"+2761 ### ####", | ||
"+2763 ### ####", | ||
"+2772 ### ####", | ||
"+2773 ### ####", | ||
"+2774 ### ####", | ||
"+2776 ### ####", | ||
"+2779 ### ####", | ||
"+2781 ### ####", | ||
"+2782 ### ####", | ||
"+2783 ### ####", | ||
"+2784 ### ####" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
var cell_phone = {}; | ||
module['exports'] = cell_phone; | ||
cell_phone.formats = require("./formats"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
var en_ZA = {}; | ||
module['exports'] = en_ZA; | ||
en_ZA.title = "South Africa (English)"; | ||
en_ZA.address = require("./address"); | ||
en_ZA.internet = require("./internet"); | ||
en_ZA.name = require("./name"); | ||
en_ZA.phone_number = require("./phone_number"); | ||
en_ZA.cell_phone = require("./cell_phone"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module["exports"] = [ | ||
"net.za", | ||
"org.za", | ||
"co.za", | ||
"com" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
var internet = {}; | ||
module['exports'] = internet; | ||
internet.domain_suffix = require("./domain_suffix"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module["exports"] = [ | ||
"Rapulane", | ||
"Nthabiseng", | ||
"Kopano", | ||
"Mpho", | ||
"Lungelo", | ||
"Ziyanda", | ||
"Nqobile", | ||
"Monde" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
var name = {}; | ||
module['exports'] = name; | ||
name.first_name = require("./first_name"); | ||
name.last_name = require("./last_name"); | ||
name.name = require("./name"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module["exports"] = [ | ||
"Dlamini", | ||
"Zulu", | ||
"Mabunda", | ||
"Makhanya", | ||
"Khoza", | ||
"Zuma", | ||
"Zondi" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module["exports"] = [ | ||
"#{first_name} #{last_name}", | ||
"#{last_name} #{first_name}" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
module["exports"] = [ | ||
"10", | ||
"11", | ||
"12", | ||
"13", | ||
"14", | ||
"15", | ||
"16", | ||
"17", | ||
"18", | ||
"21", | ||
"22", | ||
"23", | ||
"24", | ||
"27", | ||
"28", | ||
"31", | ||
"32", | ||
"33", | ||
"34", | ||
"35", | ||
"36", | ||
"39", | ||
"40", | ||
"41", | ||
"42", | ||
"43", | ||
"44", | ||
"45", | ||
"46", | ||
"47", | ||
"48", | ||
"49", | ||
"51", | ||
"53", | ||
"54", | ||
"56", | ||
"57", | ||
"58" | ||
]; |
Oops, something went wrong.