aboutsummaryrefslogtreecommitdiff
path: root/src/modules/random/index.ts
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2023-11-06 09:40:49 +0100
committerGitHub <[email protected]>2023-11-06 08:40:49 +0000
commit48a7af4f0470115945ab166b540d0bedc7e5eb20 (patch)
treeb6344afcc6f9fca2d16555d5e3495439952b9a57 /src/modules/random/index.ts
parent358572d9e76f4cd22bfcb09c092a1eaf3a31f005 (diff)
downloadfaker-48a7af4f0470115945ab166b540d0bedc7e5eb20.tar.xz
faker-48a7af4f0470115945ab166b540d0bedc7e5eb20.zip
refactor: simplify module creation (#2485)
Diffstat (limited to 'src/modules/random/index.ts')
-rw-r--r--src/modules/random/index.ts9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/modules/random/index.ts b/src/modules/random/index.ts
index 7fa16f40..98d28bc5 100644
--- a/src/modules/random/index.ts
+++ b/src/modules/random/index.ts
@@ -1,7 +1,6 @@
-import type { Faker } from '../..';
import { FakerError } from '../../errors/faker-error';
-import { bindThisToMemberFunctions } from '../../internal/bind-this-to-member-functions';
import { deprecated } from '../../internal/deprecated';
+import { ModuleBase } from '../../internal/module-base';
import type { LiteralUnion } from '../../utils/types';
import type {
AlphaChar,
@@ -15,11 +14,7 @@ import type {
*
* @deprecated Use the modules specific to the type of data you want to generate instead.
*/
-export class RandomModule {
- constructor(private readonly faker: Faker) {
- bindThisToMemberFunctions(this);
- }
-
+export class RandomModule extends ModuleBase {
/**
* Returns a random word.
*