diff options
Diffstat (limited to 'src/faker.ts')
| -rw-r--r-- | src/faker.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/faker.ts b/src/faker.ts index 14cb107d..278e0219 100644 --- a/src/faker.ts +++ b/src/faker.ts @@ -55,11 +55,11 @@ export class Faker { readonly unique: Unique['unique'] = new Unique().unique; readonly mersenne: Mersenne = new Mersenne(); - random: Random = new Random(this); + readonly random: Random = new Random(this); readonly helpers: Helpers = new Helpers(this); - datatype: Datatype = new Datatype(this); + readonly datatype: Datatype = new Datatype(this); readonly address: Address = new Address(this); readonly animal: Animal = new Animal(this); |
