Add and update mutation notes for _.assign and _.assignIn. [ci skip]

This commit is contained in:
John-David Dalton
2015-10-28 07:43:48 -07:00
parent ef7191dbc1
commit 7d9c6527a4

View File

@@ -9775,7 +9775,7 @@
* object. Source objects are applied from left to right. Subsequent sources * object. Source objects are applied from left to right. Subsequent sources
* overwrite property assignments of previous sources. * overwrite property assignments of previous sources.
* *
* **Note:** This method mutates `object` and is based on * **Note:** This method mutates `object` and is loosely based on
* [`Object.assign`](http://ecma-international.org/ecma-262/6.0/#sec-object.assign). * [`Object.assign`](http://ecma-international.org/ecma-262/6.0/#sec-object.assign).
* *
* @static * @static
@@ -9808,6 +9808,8 @@
* This method is like `_.assign` except that it iterates over own and * This method is like `_.assign` except that it iterates over own and
* inherited source properties. * inherited source properties.
* *
* **Note:** This method mutates `object`.
*
* @static * @static
* @memberOf _ * @memberOf _
* @alias extend * @alias extend