mini-effect
    Preparing search index...

    Interface StringifyJsonConfigBeta

    Stringify JSON config interface.

    interface StringifyJsonConfig {
        replacer?:
            | (string | number)[]
            | ((this: any, key: string, value: any) => any);
        space?: string | number;
    }
    Index

    Properties

    Properties

    replacer?: (string | number)[] | ((this: any, key: string, value: any) => any)

    The JSON replacer function or array.

    space?: string | number

    The JSON space option.