aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVancho Stojkov <[email protected]>2021-05-15 18:13:20 +0200
committerVancho Stojkov <[email protected]>2021-05-15 18:25:16 +0200
commitf009b855af952390d42df91caeeb262c13ffd087 (patch)
treebfb8595159e8aa79e86998d5262b3b1889d6f0d4 /lib
parent7843aa77b2322f0bdd2701e97c4f9d8d5760706c (diff)
downloadfaker-f009b855af952390d42df91caeeb262c13ffd087.tar.xz
faker-f009b855af952390d42df91caeeb262c13ffd087.zip
Add mk cell phone
Diffstat (limited to 'lib')
-rw-r--r--lib/locales/mk/cell_phone/formats.js4
-rw-r--r--lib/locales/mk/cell_phone/index.js3
-rw-r--r--lib/locales/mk/index.js1
3 files changed, 8 insertions, 0 deletions
diff --git a/lib/locales/mk/cell_phone/formats.js b/lib/locales/mk/cell_phone/formats.js
new file mode 100644
index 00000000..1fbeefa6
--- /dev/null
+++ b/lib/locales/mk/cell_phone/formats.js
@@ -0,0 +1,4 @@
+module["exports"] = [
+ "07# ### ####",
+ "+389 7# ### ####"
+];
diff --git a/lib/locales/mk/cell_phone/index.js b/lib/locales/mk/cell_phone/index.js
new file mode 100644
index 00000000..8de997ba
--- /dev/null
+++ b/lib/locales/mk/cell_phone/index.js
@@ -0,0 +1,3 @@
+var cell_phone = {};
+module['exports'] = cell_phone;
+cell_phone.formats = require("./formats");
diff --git a/lib/locales/mk/index.js b/lib/locales/mk/index.js
index 44ec98a8..111b3ab4 100644
--- a/lib/locales/mk/index.js
+++ b/lib/locales/mk/index.js
@@ -3,3 +3,4 @@ module['exports'] = mk;
mk.title = "Macedonian";
mk.separator = " и ";
mk.address = require("./address");
+mk.cell_phone = require("./cell_phone");