diff options
| author | Robert Schadek <[email protected]> | 2021-06-11 12:56:06 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-11 12:56:06 +0100 |
| commit | a4e43c632e1aed37051feaab32d9cff062b8d026 (patch) | |
| tree | 92ac8ae13221e8127b9d9940452d6236b284d062 | |
| parent | fc05869bf3e81f570f864fc90b1fd7325ad3309a (diff) | |
| download | faker-a4e43c632e1aed37051feaab32d9cff062b8d026.tar.xz faker-a4e43c632e1aed37051feaab32d9cff062b8d026.zip | |
fix for copy paste error in hr.js
I guess this file was created by copy pasting de.js and the locate in the class ctor was not changed to hr
| -rw-r--r-- | locale/hr.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locale/hr.js b/locale/hr.js index 946dbcf7..03954b2d 100644 --- a/locale/hr.js +++ b/locale/hr.js @@ -1,5 +1,5 @@ var Faker = require('../lib');
-var faker = new Faker({ locale: 'de', localeFallback: 'en' });
+var faker = new Faker({ locale: 'hr', localeFallback: 'en' });
faker.locales['hr'] = require('../lib/locales/hr');
faker.locales['en'] = require('../lib/locales/en');
module['exports'] = faker;
|
