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

@@ -1,7 +1,7 @@
import baseSet from './_baseSet.js';
/**
* This method is like `_.set` except that it accepts `customizer` which is
* This method is like `set` except that it accepts `customizer` which is
* invoked to produce the objects of `path`. If `customizer` returns `undefined`
* path creation is handled by the method instead. The `customizer` is invoked
* with three arguments: (nsValue, key, nsObject).
@@ -9,7 +9,6 @@ import baseSet from './_baseSet.js';
* **Note:** This method mutates `object`.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Object
* @param {Object} object The object to modify.
@@ -21,7 +20,7 @@ import baseSet from './_baseSet.js';
*
* var object = {};
*
* _.setWith(object, '[0][1]', 'a', Object);
* setWith(object, '[0][1]', 'a', Object);
* // => { '0': { '1': 'a' } }
*/
function setWith(object, path, value, customizer) {