Fake Mirrors
    Preparing search index...

    Interface ParseQueryStringOptions

    Options for parsing query strings.

    interface ParseQueryStringOptions {
        allowEmptyArrays?: boolean;
        allowPrototypes?: boolean;
        allowSparse?: boolean;
        arrayLimit?: number;
        charset?: "utf-8" | "iso-8859-1";
        charsetSentinel?: boolean;
        comma?: boolean;
        decoder?: (
            str: string,
            defaultDecoder: defaultDecoder,
            charset: string,
            type: "value" | "key",
        ) => any;
        delimiter?: string | RegExp;
        depth?: number | false;
        duplicates?: "combine" | "first" | "last";
        ignoreQueryPrefix?: boolean;
        interpretNumericEntities?: boolean;
        parameterLimit?: number;
        parseArrays?: boolean;
        plainObjects?: boolean;
        strictDepth?: boolean;
        strictMerge?: boolean;
        strictNullHandling?: boolean;
        throwOnLimitExceeded?: boolean;
    }

    Properties

    allowEmptyArrays?: boolean
    allowPrototypes?: boolean
    allowSparse?: boolean
    arrayLimit?: number
    charset?: "utf-8" | "iso-8859-1"
    charsetSentinel?: boolean
    comma?: boolean
    decoder?: (
        str: string,
        defaultDecoder: defaultDecoder,
        charset: string,
        type: "value" | "key",
    ) => any
    delimiter?: string | RegExp
    depth?: number | false
    duplicates?: "combine" | "first" | "last"
    ignoreQueryPrefix?: boolean
    interpretNumericEntities?: boolean
    parameterLimit?: number
    parseArrays?: boolean
    plainObjects?: boolean
    strictDepth?: boolean
    strictMerge?: boolean
    strictNullHandling?: boolean
    throwOnLimitExceeded?: boolean