Skip to content

Commit

Permalink
refactor: readonly default modules (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Apr 20, 2022
1 parent 3a5a2f2 commit b10f00c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/faker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b10f00c

Please sign in to comment.