diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/random.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/random.ts b/src/random.ts index f3c4ffd1..50fd4dba 100644 --- a/src/random.ts +++ b/src/random.ts @@ -257,11 +257,6 @@ export class Random { } /** - * @see word() - */ - readonly randomWord: Random['word'] = this.word.bind(this); - - /** * Returns string with set of random words. * * @param count Number of words. Defaults to a random value between `1` and `3` @@ -297,8 +292,6 @@ export class Random { return this.faker.image.image(); } - readonly randomImage: Random['image'] = this.image.bind(this); - /** * locale * @@ -308,8 +301,6 @@ export class Random { return this.faker.random.arrayElement(Object.keys(this.faker.locales)); } - readonly randomLocale: Random['locale'] = this.locale.bind(this); - /** * alpha. returns lower/upper alpha characters based count and upcase options * |
