Trevixal API
    Preparing search index...

    Interface KeywordDensityOptions

    interface KeywordDensityOptions {
        limit?: number;
        minLength?: number;
        stopwords?: ReadonlySet<string> | readonly string[];
    }
    Index
    limit?: number

    How many keywords to return (default 10).

    minLength?: number

    Words shorter than this are ignored (default 3).

    stopwords?: ReadonlySet<string> | readonly string[]

    Words never reported. Defaults to ENGLISH_STOPWORDS.