diff options
| author | Shinigami <[email protected]> | 2023-07-18 07:23:26 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-18 05:23:26 +0000 |
| commit | 5f947cbd4773f768a90243e54fd707c9769e8530 (patch) | |
| tree | 6fa92071b458fc6a56e7e2f09ed99c07e504ffb8 /src/modules/helpers | |
| parent | a3a1480cb3ad9301b4e5e53ba8a281d1e170bca5 (diff) | |
| download | faker-5f947cbd4773f768a90243e54fd707c9769e8530.tar.xz faker-5f947cbd4773f768a90243e54fd707c9769e8530.zip | |
chore: enable strictBindCallApply (#2254)
Diffstat (limited to 'src/modules/helpers')
| -rw-r--r-- | src/modules/helpers/index.ts | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts index 9ecd8103..92647942 100644 --- a/src/modules/helpers/index.ts +++ b/src/modules/helpers/index.ts @@ -1,5 +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 { luhnCheckValue } from './luhn-check'; import type { RecordKey } from './unique'; @@ -92,16 +93,7 @@ export class HelpersModule { private readonly uniqueStore: Record<RecordKey, RecordKey> = {}; constructor(private readonly faker: Faker) { - // Bind `this` so namespaced is working correctly - for (const name of Object.getOwnPropertyNames( - HelpersModule.prototype - ) as Array<keyof HelpersModule | 'constructor'>) { - if (name === 'constructor' || typeof this[name] !== 'function') { - continue; - } - - this[name] = this[name].bind(this); - } + bindThisToMemberFunctions(this); } /** |
