From db73e482064f52c66f5845ae3d331920971eb9e2 Mon Sep 17 00:00:00 2001 From: jdalton Date: Tue, 7 Apr 2015 08:07:00 -0700 Subject: [PATCH] Add mutation notes to docs of `_.assign` and `_.defaults`. [ci skip] --- lodash.src.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lodash.src.js b/lodash.src.js index 6f2ba2834..7b7e6c9d5 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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