forked from faker-js/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(person): change fullName to use name patterns (faker-js#1637)
- Loading branch information
1 parent
e50a72b
commit 0f30b48
Showing
50 changed files
with
350 additions
and
237 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
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.last_name}} {{person.first_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 5 }, | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 5 }, | ||
]; |
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 |
---|---|---|
@@ -1,8 +1,5 @@ | ||
export default [ | ||
'{{person.male_first_name}}', | ||
'{{person.male_last_name}} {{person.male_first_name}}', | ||
'{{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.female_first_name}}', | ||
'{{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.female_last_name}} {{person.female_first_name}}', | ||
{ value: '{{person.firstName}}', weight: 1 }, | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 1 }, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.prefix}} {{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.male_first_name}} {{person.male_last_name}} {{person.suffix}}', | ||
'{{person.female_first_name}} {{person.female_last_name}} {{person.suffix}}', | ||
'{{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.female_first_name}} {{person.female_last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.suffix}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.nobility_title_prefix}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 9 }, | ||
]; |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.nobility_title_prefix}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 5 }, | ||
]; |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
export default ['{{person.first_name}} {{person.last_name}}']; | ||
export default [ | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
export default [ | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.female_first_name}} {{person.female_last_name}}', | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}} {{person.suffix}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.suffix}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
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 |
---|---|---|
@@ -1,7 +1,16 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}} {{person.suffix}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 49 }, | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 7, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.suffix}}', | ||
weight: 7, | ||
}, | ||
{ | ||
value: | ||
'{{person.prefix}} {{person.firstName}} {{person.lastName}} {{person.suffix}}', | ||
weight: 1, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export default [ | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}-{{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}-{{person.last_name}}', | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}}-{{person.lastName}}', | ||
weight: 1, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default [ | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.last_name}} {{person.first_name}}', | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default [ | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.last_name}} {{person.first_name}}', | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1,4 +1,11 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}} {{person.last_name}}', | ||
{ | ||
value: | ||
'{{person.prefix}} {{person.firstName}} {{person.lastName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.lastName}}', | ||
weight: 9, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -1,6 +1,20 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}} de {{person.last_name}}', | ||
'{{person.suffix}} {{person.first_name}} {{person.last_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}} {{person.last_name}}', | ||
{ | ||
value: | ||
'{{person.prefix}} {{person.firstName}} {{person.lastName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} de {{person.lastName}}', | ||
weight: 3, | ||
}, | ||
{ | ||
value: | ||
'{{person.suffix}} {{person.firstName}} {{person.lastName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.lastName}}', | ||
weight: 5, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 9 }, | ||
]; |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
export default [ | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.last_name}} {{person.first_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 2, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}} {{person.suffix}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.suffix}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.last_name}} {{person.first_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 2, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 9 }, | ||
]; |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 9 }, | ||
]; |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}, {{person.suffix}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}}, {{person.suffix}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.last_name}} {{person.first_name}}', | ||
'{{person.last_name}} {{person.first_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.lastName}} {{person.firstName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 9 }, | ||
]; |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}} {{person.suffix}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.suffix}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
export default [ | ||
'{{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.male_last_name}} {{person.male_first_name}}', | ||
'{{person.male_first_name}} {{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.female_first_name}} {{person.male_last_name}}', | ||
'{{person.female_last_name}} {{person.female_first_name}}', | ||
'{{person.female_first_name}} {{person.female_first_name}} {{person.female_last_name}}', | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 1 }, | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 1 }, | ||
{ | ||
value: '{{person.firstName}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.first_name}} {{person.last_name}}', | ||
'{{person.first_name}} {{person.last_name}}', | ||
'{{person.male_first_name}} {{person.last_name}}', | ||
'{{person.female_first_name}} {{person.last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 9 }, | ||
]; |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
export default ['{{person.last_name}} {{person.first_name}}']; | ||
export default [ | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
export default ['{{person.last_name}} {{person.first_name}}']; | ||
export default [ | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 1 }, | ||
]; |
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 |
---|---|---|
@@ -1,13 +1,20 @@ | ||
export default [ | ||
'{{person.prefix}} {{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.male_last_name}} {{person.male_first_name}}', | ||
'{{person.male_first_name}} {{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.male_first_name}} {{person.male_last_name}}-{{person.male_last_name}}', | ||
'{{person.prefix}} {{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.female_first_name}} {{person.female_last_name}} {{person.suffix}}', | ||
'{{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.female_last_name}} {{person.female_first_name}}', | ||
'{{person.female_first_name}} {{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.female_first_name}} {{person.female_last_name}}-{{person.female_last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}} {{person.suffix}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 7 }, | ||
{ value: '{{person.lastName}} {{person.firstName}}', weight: 2 }, | ||
{ | ||
value: '{{person.firstName}} {{person.firstName}} {{person.lastName}}', | ||
weight: 2, | ||
}, | ||
{ | ||
value: '{{person.firstName}} {{person.lastName}}-{{person.lastName}}', | ||
weight: 2, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export default [ | ||
'{{person.female_prefix}} {{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.male_prefix}} {{person.male_first_name}} {{person.male_last_name}}', | ||
'{{person.female_first_name}} {{person.female_last_name}}', | ||
'{{person.male_first_name}} {{person.male_last_name}}', | ||
{ | ||
value: '{{person.prefix}} {{person.firstName}} {{person.lastName}}', | ||
weight: 1, | ||
}, | ||
{ value: '{{person.firstName}} {{person.lastName}}', weight: 8 }, | ||
]; |
Oops, something went wrong.