aboutsummaryrefslogtreecommitdiff
path: root/src/modules/hacker
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/hacker')
-rw-r--r--src/modules/hacker/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/hacker/index.ts b/src/modules/hacker/index.ts
index ea36fc0e..d842d74e 100644
--- a/src/modules/hacker/index.ts
+++ b/src/modules/hacker/index.ts
@@ -3,10 +3,10 @@ import type { Faker } from '../..';
/**
* Module to generate hacker/IT words and phrases.
*/
-export class Hacker {
+export class HackerModule {
constructor(private readonly faker: Faker) {
// Bind `this` so namespaced is working correctly
- for (const name of Object.getOwnPropertyNames(Hacker.prototype)) {
+ for (const name of Object.getOwnPropertyNames(HackerModule.prototype)) {
if (name === 'constructor' || typeof this[name] !== 'function') {
continue;
}