aboutsummaryrefslogtreecommitdiff
path: root/src/modules/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/helpers')
-rw-r--r--src/modules/helpers/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts
index 48c8cea0..0bb54fb6 100644
--- a/src/modules/helpers/index.ts
+++ b/src/modules/helpers/index.ts
@@ -1160,7 +1160,7 @@ export class HelpersModule {
const parts = method.split('.');
let currentModuleOrMethod: unknown = this.faker;
- let currentDefinitions: unknown = this.faker.definitions;
+ let currentDefinitions: unknown = this.faker.rawDefinitions;
// Search for the requested method or definition
for (const part of parts) {