Documentation
    Preparing search index...

    Configuration options for parsing query strings using the qs module

    type QueryStringConfig = {
        depth?: number;
        allowPrototypes?: boolean;
        plainObjects?: boolean;
        parameterLimit?: number;
        arrayLimit?: number;
        ignoreQueryPrefix?: boolean;
        delimiter?: RegExp | string;
        allowDots?: boolean;
        charset?: "utf-8" | "iso-8859-1";
        charsetSentinel?: boolean;
        interpretNumericEntities?: boolean;
        parseArrays?: boolean;
        comma?: boolean;
    }
    Index

    Properties

    depth?: number

    Maximum depth for nested objects

    allowPrototypes?: boolean

    Whether to allow prototype properties

    plainObjects?: boolean

    Whether to create plain objects

    parameterLimit?: number

    Maximum number of parameters to parse

    arrayLimit?: number

    Maximum number of array elements to parse

    ignoreQueryPrefix?: boolean

    Whether to ignore the leading ? in query strings

    delimiter?: RegExp | string

    Delimiter to use for parsing

    allowDots?: boolean

    Whether to allow dots in object keys

    charset?: "utf-8" | "iso-8859-1"

    Character encoding to use

    charsetSentinel?: boolean

    Whether to use charset sentinel

    interpretNumericEntities?: boolean

    Whether to interpret numeric entities

    parseArrays?: boolean

    Whether to parse arrays

    comma?: boolean

    Whether to parse comma-separated values as arrays