aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShinigami <[email protected]>2022-02-15 16:05:08 +0100
committerGitHub <[email protected]>2022-02-15 16:05:08 +0100
commit58fbfe3835b0f27949e7eb262d246eb9d84bb870 (patch)
tree2dd240fad61bf4a512771c2d6010a68a32590c86 /src
parent53c1aeaca387a0cec0a9be8adad7e22b1dd560a1 (diff)
downloadfaker-58fbfe3835b0f27949e7eb262d246eb9d84bb870.tar.xz
faker-58fbfe3835b0f27949e7eb262d246eb9d84bb870.zip
fix: remove invalid aliases (#488)
Diffstat (limited to 'src')
-rw-r--r--src/random.ts9
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
*