diff options
| author | Marak <[email protected]> | 2021-02-02 13:13:55 -0500 |
|---|---|---|
| committer | Marak <[email protected]> | 2021-02-02 13:13:55 -0500 |
| commit | 1b663aad00c8dc1b0a33a945d12e577136cbee47 (patch) | |
| tree | 1be2fdae0dca3457ec2c585e87df2fb9883b1330 /lib | |
| parent | 8043a1edc27193bbcdbda51a56d9f96b2222c40a (diff) | |
| download | faker-1b663aad00c8dc1b0a33a945d12e577136cbee47.tar.xz faker-1b663aad00c8dc1b0a33a945d12e577136cbee47.zip | |
Add missing require for `hr` locale #1093
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/locales.js | 1 | ||||
| -rw-r--r-- | lib/locales/hr/index.js | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/locales.js b/lib/locales.js index cf2af5dc..7c6853c0 100644 --- a/lib/locales.js +++ b/lib/locales.js @@ -22,6 +22,7 @@ exports['fr'] = require('./locales/fr'); exports['fr_CA'] = require('./locales/fr_CA'); exports['fr_CH'] = require('./locales/fr_CH'); exports['ge'] = require('./locales/ge'); +exports['hr'] = require('./locales/hr'); exports['id_ID'] = require('./locales/id_ID'); exports['it'] = require('./locales/it'); exports['ja'] = require('./locales/ja'); diff --git a/lib/locales/hr/index.js b/lib/locales/hr/index.js index 25000ca2..3aadffb9 100644 --- a/lib/locales/hr/index.js +++ b/lib/locales/hr/index.js @@ -2,9 +2,7 @@ var hr = {}; module['exports'] = hr; hr.title = "Hrvatski"; hr.address = require("./address"); -hr.company = require("./company"); hr.internet = require("./internet"); -hr.lorem = require("./lorem"); hr.name = require("./name"); hr.phone_number = require("./phone_number"); hr.cell_phone = require("./phone_number"); |
