@untemps/utils - v3.1.0
    Preparing search index...

    Interface GenerateTokenizedTextConfig

    Configuration object for generateTokenizedText.

    interface GenerateTokenizedTextConfig {
        dictionary?: string[];
        divider?: string;
        maxWords?: number;
        minWords?: number;
        tokens?: string[];
    }
    Index

    Properties

    dictionary?: string[]

    A list of words from which picking the words.

    divider?: string

    The symbol that identifies a token.

    maxWords?: number

    The maximum number of words to pick.

    minWords?: number

    The minimum number of words to pick.

    tokens?: string[]

    The list of tokens.