-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8976b49
commit 24e8d32
Showing
21 changed files
with
364 additions
and
0 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,3 @@ | ||
{ | ||
"data": ["קטן מאוד מאוד", "קטן מאוד", "קטן", "בינוני", "גדול", "גדול מאוד", "גדול מאוד מאוד"] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './clothing-size.i18n.json'; | ||
|
||
/** | ||
* Generate a random clothing size. | ||
* | ||
* @category fashion | ||
* | ||
* @example | ||
* | ||
* randClothingSize() | ||
* | ||
* @example | ||
* | ||
* randClothingSize({ length: 10 }) | ||
* | ||
*/ | ||
export function randClothingSize<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,24 @@ | ||
{ | ||
"data": [ | ||
"אברהם", | ||
"יצחק", | ||
"יעקב", | ||
"שרה", | ||
"רבקה", | ||
"רחל", | ||
"משה", | ||
"דוד", | ||
"שלמה", | ||
"רות", | ||
"אסתר", | ||
"דניאל", | ||
"יוסף", | ||
"מרים", | ||
"חנה", | ||
"נעמי", | ||
"יהושע", | ||
"שמואל", | ||
"עמוס", | ||
"תמר" | ||
] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './first-name.i18n.json'; | ||
|
||
/** | ||
* Generate a random first name. | ||
* | ||
* @category person | ||
* | ||
* @example | ||
* | ||
* randFirstName() | ||
* | ||
* @example | ||
* | ||
* randFirstName({ length: 10 }) | ||
* | ||
*/ | ||
export function randFirstName<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,24 @@ | ||
{ | ||
"data": [ | ||
"פלאפל", | ||
"חומוס", | ||
"שקשוקה", | ||
"מצות", | ||
"גפילטע פיש", | ||
"קוגל", | ||
"חלה", | ||
"בורקס", | ||
"סביח", | ||
"מלאווח", | ||
"ג'חנון", | ||
"קובה", | ||
"פסטל", | ||
"שניצל", | ||
"פיתה", | ||
"לאפה", | ||
"טחינה", | ||
"חציל", | ||
"סלט ירקות", | ||
"קוסקוס" | ||
] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './food.i18n.json'; | ||
|
||
/** | ||
* Generate a random food item. | ||
* | ||
* @category food | ||
* | ||
* @example | ||
* | ||
* randFood() | ||
* | ||
* @example | ||
* | ||
* randFood({ length: 10 }) | ||
* | ||
*/ | ||
export function randFood<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,14 @@ | ||
{ | ||
"data": [ | ||
"זכר", | ||
"נקבה", | ||
"לא בינארי", | ||
"ג'נדרקוויר", | ||
"טרנסג'נדר", | ||
"סיסג'נדר", | ||
"אגנדר", | ||
"ביג'נדר", | ||
"ג'נדרפלואיד", | ||
"אינטרסקס" | ||
] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './gender.i18n.json'; | ||
|
||
/** | ||
* Generate a random gender. | ||
* | ||
* @category person | ||
* | ||
* @example | ||
* | ||
* randGender() | ||
* | ||
* @example | ||
* | ||
* randGender({ length: 10 }) | ||
* | ||
*/ | ||
export function randGender<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,14 @@ | ||
{ | ||
"data": [ | ||
"סוס ערבי", | ||
"סוס פוני", | ||
"סוס אפלוסה", | ||
"סוס פריזי", | ||
"סוס מוסטנג", | ||
"סוס קלידסדייל", | ||
"סוס שייר", | ||
"סוס אנדלוסי", | ||
"סוס טרוטר אמריקאי", | ||
"סוס קוורטר" | ||
] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './horse.i18n.json'; | ||
|
||
/** | ||
* Generate a random horse breed. | ||
* | ||
* @category animal | ||
* | ||
* @example | ||
* | ||
* randHorse() | ||
* | ||
* @example | ||
* | ||
* randHorse({ length: 10 }) | ||
* | ||
*/ | ||
export function randHorse<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"data": [ | ||
"עברית", | ||
"אנגלית", | ||
"ערבית", | ||
"רוסית", | ||
"צרפתית", | ||
"ספרדית", | ||
"גרמנית", | ||
"איטלקית", | ||
"יידיש", | ||
"אמהרית" | ||
] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './language.i18n.json'; | ||
|
||
/** | ||
* Generate a random language. | ||
* | ||
* @category address | ||
* | ||
* @example | ||
* | ||
* randLanguage() | ||
* | ||
* @example | ||
* | ||
* randLanguage({ length: 10 }) | ||
* | ||
*/ | ||
export function randLanguage<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,24 @@ | ||
{ | ||
"data": [ | ||
"כהן", | ||
"לוי", | ||
"מזרחי", | ||
"פרץ", | ||
"ביטון", | ||
"אברהם", | ||
"פרידמן", | ||
"אגבאריה", | ||
"מלכה", | ||
"אזולאי", | ||
"דהן", | ||
"אוחיון", | ||
"חדד", | ||
"עמר", | ||
"אלון", | ||
"לביא", | ||
"שלום", | ||
"גבאי", | ||
"יוסף", | ||
"שמעון" | ||
] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './last-name.i18n.json'; | ||
|
||
/** | ||
* Generate a random last name. | ||
* | ||
* @category person | ||
* | ||
* @example | ||
* | ||
* randLastName() | ||
* | ||
* @example | ||
* | ||
* randLastName({ length: 10 }) | ||
* | ||
*/ | ||
export function randLastName<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,3 @@ | ||
{ | ||
"data": ["מר", "גב'", "ד\"ר", "פרופ'", "עו\"ד", "רו\"ח", "הרב", "אדון", "גברת", "אינג'"] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './person-title.i18n.json'; | ||
|
||
/** | ||
* Generate a random person title. | ||
* | ||
* @category person | ||
* | ||
* @example | ||
* | ||
* randPersonTitle() | ||
* | ||
* @example | ||
* | ||
* randPersonTitle({ length: 10 }) | ||
* | ||
*/ | ||
export function randPersonTitle<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,3 @@ | ||
{ | ||
"data": ["הוא/שלו", "היא/שלה", "הם/שלהם", "הן/שלהן", "זה/שלו", "זו/שלה"] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './pronoun.i18n.json'; | ||
|
||
/** | ||
* Generate a random pronoun. | ||
* | ||
* @category person | ||
* | ||
* @example | ||
* | ||
* randPronoun() | ||
* | ||
* @example | ||
* | ||
* randPronoun({ length: 10 }) | ||
* | ||
*/ | ||
export function randPronoun<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |
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,11 @@ | ||
{ | ||
"data": [ | ||
"ראשון", | ||
"שני", | ||
"שלישי", | ||
"רביעי", | ||
"חמישי", | ||
"שישי", | ||
"שבת" | ||
] | ||
} |
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,22 @@ | ||
import { FakeOptions, fake } from '../../core/core'; | ||
import { data } from './weekday.i18n.json'; | ||
|
||
/** | ||
* Generate a random weekday. | ||
* | ||
* @category date | ||
* | ||
* @example | ||
* | ||
* randWeekday() | ||
* | ||
* @example | ||
* | ||
* randWeekday({ length: 10 }) | ||
* | ||
*/ | ||
export function randWeekday<Options extends FakeOptions = never>( | ||
options?: Options | ||
) { | ||
return fake(data, options); | ||
} |