aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarat Dyatko <[email protected]>2015-02-17 22:22:45 +0300
committerMarat Dyatko <[email protected]>2015-02-17 22:22:45 +0300
commit2ff1990d2ba0aeb2931b271b36955d8fe2105f4d (patch)
treee5a91208d58e423cad028c02b13bf2f5942ffc9d
parent282b1ea87b439ea32a09becb7ff2ecbbd98a6088 (diff)
downloadfaker-2ff1990d2ba0aeb2931b271b36955d8fe2105f4d.tar.xz
faker-2ff1990d2ba0aeb2931b271b36955d8fe2105f4d.zip
Define male and female names
-rw-r--r--index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.js b/index.js
index f3bc4291..6586f24b 100644
--- a/index.js
+++ b/index.js
@@ -41,7 +41,7 @@ exports.localeFallback = "en";
exports.definitions = {};
var _definitions = {
- "name": ["first_name", "last_name", "prefix", "suffix"],
+ "name": ["first_name", "last_name", "prefix", "suffix", "male_first_name", "female_first_name", "male_middle_name", "female_middle_name", "male_last_name", "female_last_name"],
"address": ["city_prefix", "city_suffix", "street_suffix", "county", "country", "state", "state_abbr"],
"company": ["adjective", "noun", "descriptor", "bs_adjective", "bs_noun", "bs_verb"],
"lorem": ["words"],
@@ -70,4 +70,4 @@ Object.keys(_definitions).forEach(function(d){
}
});
});
-}); \ No newline at end of file
+});