We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ec863b commit e0e221bCopy full SHA for e0e221b
api/.nextRelease/api.js
@@ -170,7 +170,7 @@ class Generator {
170
timezone
171
});
172
173
- this.include('email', tr.transliterate(name[0]) + '.' + tr.transliterate(name[1]).replace(/ /g, '') + '@example.com');
+ this.include('email', tr.transliterate(`${name[0]}.${name[1]}`).replace(/ /g, '').toLowerCase() + '@example.com');
174
175
let salt = random(2, 8);
176
let password = this.password === undefined ? randomItem(this.datasets.common.passwords) : this.genPassword();
0 commit comments