diff options
| author | Vancho Stojkov <[email protected]> | 2021-05-15 18:13:20 +0200 |
|---|---|---|
| committer | Vancho Stojkov <[email protected]> | 2021-05-15 18:25:16 +0200 |
| commit | f009b855af952390d42df91caeeb262c13ffd087 (patch) | |
| tree | bfb8595159e8aa79e86998d5262b3b1889d6f0d4 | |
| parent | 7843aa77b2322f0bdd2701e97c4f9d8d5760706c (diff) | |
| download | faker-f009b855af952390d42df91caeeb262c13ffd087.tar.xz faker-f009b855af952390d42df91caeeb262c13ffd087.zip | |
Add mk cell phone
| -rw-r--r-- | lib/locales/mk/cell_phone/formats.js | 4 | ||||
| -rw-r--r-- | lib/locales/mk/cell_phone/index.js | 3 | ||||
| -rw-r--r-- | lib/locales/mk/index.js | 1 |
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"); |
