File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ CHANGELOG
2828* Additional ` gmail.com ` domain names with leading digits are now
2929 normalized when ` hashAddress ` is used. For example, ` 100gmail.com ` will
3030 become ` gmail.com ` .
31+ * Additional ` gmail.com ` typos are now normalized when ` hashAddress ` is
32+ used. For example, ` gmali.com ` will become ` gmail.com ` .
3133
32346.0.0 (2023-12-05)
3335------------------
Original file line number Diff line number Diff line change @@ -34,12 +34,15 @@ export default class Email implements EmailProps {
3434
3535 private static readonly typoDomains : { [ key : string ] : string } = {
3636 // gmail.com
37- '35gmai.com' : 'gmail.com' ,
38- '636gmail.com' : 'gmail.com' ,
37+ 'gmai.com' : 'gmail.com' ,
3938 'gamil.com' : 'gmail.com' ,
40- 'gmail.comu ' : 'gmail.com' ,
39+ 'gmali.com ' : 'gmail.com' ,
4140 'gmial.com' : 'gmail.com' ,
4241 'gmil.com' : 'gmail.com' ,
42+ 'gmaill.com' : 'gmail.com' ,
43+ 'gmailm.com' : 'gmail.com' ,
44+ 'gmailo.com' : 'gmail.com' ,
45+ 'gmailyhoo.com' : 'gmail.com' ,
4346 'yahoogmail.com' : 'gmail.com' ,
4447 // outlook.com
4548 'putlook.com' : 'outlook.com' ,
You can’t perform that action at this time.
0 commit comments