Files
Botexercito/Frontend/angular-internal-chat/node_modules/thingies/lib/normalizeEmail.d.ts
T

17 lines
336 B
TypeScript
Raw Normal View History

2026-03-22 18:07:19 +00:00
/**
* 1. Lower-cases whole email.
* 2. Removes dots ".".
* 3. Remotes name part after "+".
* 4. Throws if cannot parse the email.
*
* For example, this email
*
* Michal.Loler+twitter@Gmail.com
*
* will be normalized to
*
* michalloler@gmail.com
*
*/
export declare const normalizeEmail: (email: string) => string;