From 38ab42f8558254d5e9d7c27532ed724e21352e0c Mon Sep 17 00:00:00 2001 From: jdalton Date: Mon, 13 Apr 2015 07:43:35 -0700 Subject: [PATCH] Add `Object.assign` reference to `_.assign` docs. [ci skip] --- lodash.src.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index aecfae290..e82986663 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -9205,7 +9205,9 @@ * The `customizer` is bound to `thisArg` and invoked with five arguments: * (objectValue, sourceValue, key, object, source). * - * **Note:** This method mutates `object`. + * **Note:** This method mutates `object` and is based on + * [`Object.assign`](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign). + * * * @static * @memberOf _