react-honeypot-field
    Preparing search index...

    Interface ServerHoneypotOptions

    interface ServerHoneypotOptions {
        fieldValue: string | null | undefined;
        mountedAt?: number | null;
        submittedAt?: number | null;
        timeThreshold?: number;
    }
    Index

    Properties

    fieldValue: string | null | undefined

    The value of the honeypot field from the form submission.

    mountedAt?: number | null

    Unix timestamp (ms) when the form was mounted (sent from client).

    submittedAt?: number | null

    Unix timestamp (ms) when the form was submitted (server receives).

    timeThreshold?: number

    Minimum elapsed ms to consider a submission human.

    1500