mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
11 lines
321 B
JavaScript
11 lines
321 B
JavaScript
import { normalizeEmail } from 'validator'
|
|
|
|
export default (email) => normalizeEmail(email, {
|
|
gmail_remove_dots: false,
|
|
gmail_remove_subaddress: false,
|
|
// gmail_convert_googlemaildotcom: true, default
|
|
outlookdotcom_remove_subaddress: false,
|
|
yahoo_remove_subaddress: false,
|
|
icloud_remove_subaddress: false,
|
|
})
|