diff options
| author | DivisionByZero <[email protected]> | 2024-04-15 00:27:11 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-15 00:27:11 +0200 |
| commit | 453ea970a4c7ed19e9d41fd026923f42dbd4e768 (patch) | |
| tree | da1e48fa8fc1186b8b185a1f9e24c7d6e921c7cb /src/locales/ja | |
| parent | 734a7f3d55d1233d8182585bb79d2013f0ce289e (diff) | |
| download | faker-453ea970a4c7ed19e9d41fd026923f42dbd4e768.tar.xz faker-453ea970a4c7ed19e9d41fd026923f42dbd4e768.zip | |
refactor(locale)!: remove location data index-value-binding (#2476)
Diffstat (limited to 'src/locales/ja')
| -rw-r--r-- | src/locales/ja/location/direction.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/locales/ja/location/direction.ts b/src/locales/ja/location/direction.ts index cefead57..2ada99fe 100644 --- a/src/locales/ja/location/direction.ts +++ b/src/locales/ja/location/direction.ts @@ -1 +1,6 @@ -export default ['北', '東', '南', '西', '北東', '北西', '南東', '南西']; +export default { + cardinal: ['北', '東', '南', '西'], + cardinal_abbr: ['北', '東', '南', '西'], + ordinal: ['北東', '北西', '南東', '南西'], + ordinal_abbr: ['北東', '北西', '南東', '南西'], +}; |
