-
-
Notifications
You must be signed in to change notification settings - Fork 944
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(person): Incorrect behavior of name.firstName() function (#1610)
- Loading branch information
Matt Mayer
authored
Dec 21, 2022
1 parent
2d0ca3f
commit 4ce8e98
Showing
34 changed files
with
2,491 additions
and
2,332 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// We don't have a generic first name list for this locale | ||
// So simply concatenate male and female lists and remove any duplicates | ||
// This avoids falling back to fallback locale | ||
import { mergeArrays } from './../../../internal/merge'; | ||
import female_first_name from './female_first_name'; | ||
import male_first_name from './male_first_name'; | ||
|
||
export default mergeArrays(female_first_name, male_first_name); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.