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 baseUpdate from './_baseUpdate.js';
/**
* This method is like `_.update` except that it accepts `customizer` which is
* This method is like `update` 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 baseUpdate from './_baseUpdate.js';
* **Note:** This method mutates `object`.
*
* @static
* @memberOf _
* @since 4.6.0
* @category Object
* @param {Object} object The object to modify.
@@ -21,7 +20,7 @@ import baseUpdate from './_baseUpdate.js';
*
* var object = {};
*
* _.updateWith(object, '[0][1]', _.constant('a'), Object);
* updateWith(object, '[0][1]', constant('a'), Object);
* // => { '0': { '1': 'a' } }
*/
function updateWith(object, path, updater, customizer) {