node-ejs-renderer/node_modules/thingies/lib/normalizeEmail.d.ts

17 lines
336 B
TypeScript
Raw Permalink Normal View History

2024-06-09 13:55:01 -04: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;