_.setWith

_.setWith(object, path, value, [customizer])

source npm package

This method is like _.set 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.

Since

4.0.0

Arguments

  1. object (Object): The object to modify.
  2. path (Array|string): The path of the property to set.
  3. value (*): The value to set.
  4. [customizer] (Function): The function to customize assigned values.

Returns

(Object): Returns object.

Example

var object = {};
 
_.setWith(object, '[0][1]', 'a', Object);
// => { '0': { '1': 'a' } }