aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVancho Stojkov <[email protected]>2021-05-15 23:55:07 +0200
committerVancho Stojkov <[email protected]>2021-05-15 23:55:07 +0200
commitfffb25a3f221689c7411e6b6e668207908bdbffb (patch)
tree6cc5d9738d8ba2d8a2a0d6cb21ff4fc71beae2d7 /lib
parentcb914a9b01a32cef4d9b3e2b4e9d0507c2bba5b0 (diff)
downloadfaker-fffb25a3f221689c7411e6b6e668207908bdbffb.tar.xz
faker-fffb25a3f221689c7411e6b6e668207908bdbffb.zip
Add mk internet
Diffstat (limited to 'lib')
-rw-r--r--lib/locales/mk/index.js1
-rw-r--r--lib/locales/mk/internet/domain_suffix.js13
-rw-r--r--lib/locales/mk/internet/free_email.js6
-rw-r--r--lib/locales/mk/internet/index.js4
4 files changed, 24 insertions, 0 deletions
diff --git a/lib/locales/mk/index.js b/lib/locales/mk/index.js
index d1e7181f..81045fe8 100644
--- a/lib/locales/mk/index.js
+++ b/lib/locales/mk/index.js
@@ -7,3 +7,4 @@ mk.cell_phone = require("./cell_phone");
mk.phone_number = require("./phone_number");
mk.name = require("./name");
mk.date = require("./date");
+mk.internet = require("./internet");
diff --git a/lib/locales/mk/internet/domain_suffix.js b/lib/locales/mk/internet/domain_suffix.js
new file mode 100644
index 00000000..11a1aa32
--- /dev/null
+++ b/lib/locales/mk/internet/domain_suffix.js
@@ -0,0 +1,13 @@
+module["exports"] = [
+ "mk",
+ "com",
+ "com.mk",
+ "org.mk",
+ "gov.mk",
+ "net.mk",
+ "inf.mk",
+ "net",
+ "org",
+ "eu",
+ "мкд"
+];
diff --git a/lib/locales/mk/internet/free_email.js b/lib/locales/mk/internet/free_email.js
new file mode 100644
index 00000000..d4ebd4a8
--- /dev/null
+++ b/lib/locales/mk/internet/free_email.js
@@ -0,0 +1,6 @@
+module["exports"] = [
+ "t.mk",
+ "gmail.com",
+ "yahoo.com",
+ "hotmail.com"
+];
diff --git a/lib/locales/mk/internet/index.js b/lib/locales/mk/internet/index.js
new file mode 100644
index 00000000..8a337d64
--- /dev/null
+++ b/lib/locales/mk/internet/index.js
@@ -0,0 +1,4 @@
+var internet = {};
+module['exports'] = internet;
+internet.free_email = require("./free_email");
+internet.domain_suffix = require("./domain_suffix");