Member Junction
    Preparing search index...

    JSON-specific options

    interface JSONOptions {
        dateFormat?: "iso" | "timestamp" | "locale";
        includeMetadata?: boolean;
        indent?: number;
        pretty?: boolean;
        replacer?: (key: string, value: unknown) => unknown;
    }
    Index

    Properties

    dateFormat?: "iso" | "timestamp" | "locale"

    Date format for serialization

    includeMetadata?: boolean

    Include metadata wrapper

    indent?: number

    Indentation size (default: 2)

    pretty?: boolean

    Pretty print with indentation

    replacer?: (key: string, value: unknown) => unknown

    Custom replacer function for JSON.stringify