diff options
| author | Marak <[email protected]> | 2021-02-08 21:41:45 -0500 |
|---|---|---|
| committer | Marak <[email protected]> | 2021-02-08 21:41:45 -0500 |
| commit | 4eb3f008bae646d7bc86af289a3ffb6b782052fe (patch) | |
| tree | c23c5c0a4e05bf19785cb8da0592f7542e04d8ea | |
| parent | 604a935bb98ae61338424c9a6bd7d0419077b0a8 (diff) | |
| download | faker-4eb3f008bae646d7bc86af289a3ffb6b782052fe.tar.xz faker-4eb3f008bae646d7bc86af289a3ffb6b782052fe.zip | |
Adds missing `name` require for `ar` locale
| -rw-r--r-- | lib/locales/ar/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/locales/ar/index.js b/lib/locales/ar/index.js index 01dad726..ff0a4528 100644 --- a/lib/locales/ar/index.js +++ b/lib/locales/ar/index.js @@ -3,6 +3,7 @@ module["exports"] = ar; ar.title = "Arabic"; ar.separator = " & "; ar.address = require("./address"); +ar.name = require("./name"); ar.phone_number = require("./phone_number"); ar.cell_phone = require("./cell_phone"); ar.commerce = require("./commerce"); |
