phasmid - v0.0.1
    Preparing search index...

    Interface NormalizedEmail

    The structured result of normalizing an address.

    interface NormalizedEmail {
        domain: string;
        local: string;
        normalized: string;
        providerId: string | null;
        subaddress: string | null;
        valid: boolean;
    }
    Index
    domain: string

    The normalized domain (after the @).

    local: string

    The normalized local part (before the @).

    normalized: string

    The fully normalized address, ${local}@${domain}.

    providerId: string | null

    The id of the provider that matched, or null if none did.

    subaddress: string | null

    The sub-address ("tag") that was stripped, or null if there was none.

    valid: boolean

    Whether the input looks like a syntactically valid address.