Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Oct 24, 2024
1 parent de4dbec commit 27f2c5e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/utils/mersenne.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import type { Randomizer } from '../randomizer';
* This is the default randomizer used by faker prior to v9.0.
*
* @example
* import { de, en, generateMersenne32Randomizer, Faker } from '@faker-js/faker';
*
* const randomizer = generateMersenne32Randomizer();
* randomizer.seed(42);
* // Share the same randomizer between multiple instances
Expand Down Expand Up @@ -38,6 +40,8 @@ export function generateMersenne32Randomizer(): Randomizer {
* This is the default randomizer used by faker starting with v9.0.
*
* @example
* import { de, en, generateMersenne53Randomizer, Faker } from '@faker-js/faker';
*
* const randomizer = generateMersenne53Randomizer();
* randomizer.seed(42);
* // Share the same randomizer between multiple instances
Expand Down

0 comments on commit 27f2c5e

Please sign in to comment.