edgeport - v1.0.6
    Preparing search index...

    Interface IrcPrefix

    A parsed message prefix (:nick!user@host or :servername).

    raw is always the verbatim prefix; nick/user/host are filled in when the prefix parses as a nick!user@host form (a bare servername leaves them undefined).

    1.0.4

    interface IrcPrefix {
        host?: string;
        nick?: string;
        raw: string;
        user?: string;
    }
    Index
    host?: string

    The hostname (after @), when present.

    nick?: string

    The nickname, when the prefix is a user prefix (not a bare servername).

    raw: string

    The verbatim prefix as it appeared on the wire, without the leading :.

    user?: string

    The user/ident part (between ! and @), when present.