diff options
| author | ST-DDT <[email protected]> | 2023-09-24 01:24:37 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-23 23:24:37 +0000 |
| commit | 24415ee993a9c6e3c8f0dffa544f492dcb29463c (patch) | |
| tree | bce36d80dbd989b8cd9fbbf47be411d14fd167d4 /src/modules | |
| parent | 74eecccd3af702d8a1d8072f94032ccb54293cb1 (diff) | |
| download | faker-24415ee993a9c6e3c8f0dffa544f492dcb29463c.tar.xz faker-24415ee993a9c6e3c8f0dffa544f492dcb29463c.zip | |
infra: lint all existing jsdocs (#2408)
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/date/index.ts | 3 | ||||
| -rw-r--r-- | src/modules/helpers/index.ts | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/date/index.ts b/src/modules/date/index.ts index f63ed452..8f7efaae 100644 --- a/src/modules/date/index.ts +++ b/src/modules/date/index.ts @@ -23,6 +23,9 @@ function toDate( return date; } +/** + * Module to generate dates (without methods requiring localized data). + */ export class SimpleDateModule { constructor(protected readonly faker: SimpleFaker) { bindThisToMemberFunctions(this); diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts index 3889c572..f5e7e177 100644 --- a/src/modules/helpers/index.ts +++ b/src/modules/helpers/index.ts @@ -158,6 +158,9 @@ function legacyRegexpStringParse( return string; } +/** + * Module with various helper methods providing basic (seed-dependent) operations useful for implementing faker methods (without methods requiring localized data). + */ export class SimpleHelpersModule { /** * Global store of unique values. |
