Add mutation notes to docs of _.assign and _.defaults. [ci skip]

This commit is contained in:
jdalton
2015-04-07 08:07:00 -07:00
parent d13972e0b8
commit db73e48206

View File

@@ -9143,6 +9143,8 @@
* The `customizer` is bound to `thisArg` and invoked with five arguments:
* (objectValue, sourceValue, key, object, source).
*
* **Note:** This method mutates `object`.
*
* @static
* @memberOf _
* @alias extend
@@ -9214,6 +9216,8 @@
* object for all destination properties that resolve to `undefined`. Once a
* property is set, additional values of the same property are ignored.
*
* **Note:** This method mutates `object`.
*
* @static
* @memberOf _
* @category Object