JS Utils Kit
    Preparing search index...

    Interface DeepMergeOptions

    Configuration options for deepMerge.

    interface DeepMergeOptions {
        arrayStrategy?: "concat" | "replace" | "merge";
    }
    Index

    Properties

    Properties

    arrayStrategy?: "concat" | "replace" | "merge"

    Defines how arrays should be handled when merging.

    • replace - the incoming array replaces the existing array
    • concat - arrays are concatenated
    • merge - arrays are merged with duplicate values removed
    "replace"