Function updateWith

  • This method is like update except that it accepts customizer which is invoked to produce the objects of path. If customizer returns undefined path creation is handled by the method instead. The customizer is invoked with three arguments: (nsValue, key, nsObject).

    Note: This method mutates object.

    Type Parameters

    • T

    Parameters

    • object: T

      The object to modify.

    • path: string | string[]

      The path of the property to set.

    • Optionalupdater: ((...any: any[]) => any)

      The function to produce the updated value.

        • (...any): any
        • Parameters

          • Rest...any: any[]

          Returns any

    • Optionalcustomizer: ((...any: any[]) => any)

      The function to customize assigned values.

        • (...any): any
        • Parameters

          • Rest...any: any[]

          Returns any

    Returns T

    Returns object.

    5.3.0

    const object = {}

    updateWith(object, '[0][1]', () => 'a', Object)
    // => { '0': { '1': 'a' } }