You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added domain generator
- Added email generator
- Moved username generator to Internet module from Person
- Added range and replace utils generators for strings
- Added a locale parameter to the generated faker
- Added a whole slew of words to the lorem ipsum generator
- Moved lorem ipsum corpus to a locale file
- Added options to the lorem ipsum generator. So far, they allow the user to specify how many words at the beginning of the generated text should follow the classic "lorem ipsum"
Copy file name to clipboardExpand all lines: Forged.Core/Generators/Internet/UsernameGenerator.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
usingSystem.Text.Json.Serialization;
4
4
usingJetBrains.Annotations;
5
5
6
-
namespaceForged.Core.Generators.Person;
6
+
namespaceForged.Core.Generators.Internet;
7
7
8
8
/// <summary>
9
9
/// Generates random usernames with configurable options for prefixes, suffixes, and leet-speak substitutions.
@@ -50,7 +50,7 @@ public sealed class UsernameGenerator(float prefixChance, float suffixChance, fl
50
50
/// <returns>A randomly generated username that may include a prefix, suffix, and leet-speak substitutions based on the configured probabilities.</returns>
0 commit comments