aboutsummaryrefslogtreecommitdiff
path: root/src/modules/animal
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/animal
parent358572d9e76f4cd22bfcb09c092a1eaf3a31f005 (diff)
downloadfaker-48a7af4f0470115945ab166b540d0bedc7e5eb20.tar.xz
faker-48a7af4f0470115945ab166b540d0bedc7e5eb20.zip
refactor: simplify module creation (#2485)
Diffstat (limited to 'src/modules/animal')
-rw-r--r--src/modules/animal/index.ts9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/modules/animal/index.ts b/src/modules/animal/index.ts
index 09d7f9e1..7e5a51da 100644
--- a/src/modules/animal/index.ts
+++ b/src/modules/animal/index.ts
@@ -1,5 +1,4 @@
-import type { Faker } from '../..';
-import { bindThisToMemberFunctions } from '../../internal/bind-this-to-member-functions';
+import { ModuleBase } from '../../internal/module-base';
/**
* Module to generate animal related entries.
@@ -12,11 +11,7 @@ import { bindThisToMemberFunctions } from '../../internal/bind-this-to-member-fu
*
* All values may be localized.
*/
-export class AnimalModule {
- constructor(private readonly faker: Faker) {
- bindThisToMemberFunctions(this);
- }
-
+export class AnimalModule extends ModuleBase {
/**
* Returns a random dog breed.
*