Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -2,7 +2,7 @@ import baseMerge from './_baseMerge.js';
import createAssigner from './_createAssigner.js';
/**
* This method is like `_.assign` except that it recursively merges own and
* This method is like `assign` except that it recursively merges own and
* inherited enumerable string keyed properties of source objects into the
* destination object. Source properties that resolve to `undefined` are
* skipped if a destination value exists. Array and plain object properties
@@ -13,7 +13,6 @@ import createAssigner from './_createAssigner.js';
* **Note:** This method mutates `object`.
*
* @static
* @memberOf _
* @since 0.5.0
* @category Object
* @param {Object} object The destination object.
@@ -29,7 +28,7 @@ import createAssigner from './_createAssigner.js';
* 'a': [{ 'c': 3 }, { 'e': 5 }]
* };
*
* _.merge(object, other);
* merge(object, other);
* // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }
*/
const merge = createAssigner((object, source, srcIndex) => {