From 7d9c6527a48cf14a200d1592529922e1155403f7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 28 Oct 2015 07:43:48 -0700 Subject: [PATCH] Add and update mutation notes for `_.assign` and `_.assignIn`. [ci skip] --- lodash.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 90fd6e93e..df9c2044e 100644 --- a/lodash.js +++ b/lodash.js @@ -9775,7 +9775,7 @@ * object. Source objects are applied from left to right. Subsequent 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). * * @static @@ -9808,6 +9808,8 @@ * This method is like `_.assign` except that it iterates over own and * inherited source properties. * + * **Note:** This method mutates `object`. + * * @static * @memberOf _ * @alias extend