kysely
    Preparing search index...

    Interface ParseJSONResultsPluginOptions

    interface ParseJSONResultsPluginOptions {
        objectStrategy?: ObjectStrategy;
    }
    Index

    Properties

    Properties

    objectStrategy?: ObjectStrategy

    When 'in-place', arrays' and objects' values are parsed in-place. This is the most time and space efficient option.

    This can result in runtime errors if some objects/arrays are readonly.

    When 'create', new arrays and objects are created to avoid such errors.

    Defaults to 'in-place'.