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

@@ -8,7 +8,6 @@ import identity from './identity.js';
* property assignments of previous values.
*
* @static
* @memberOf _
* @since 0.7.0
* @category Object
* @param {Object} object The object to invert.
@@ -17,7 +16,7 @@ import identity from './identity.js';
*
* var object = { 'a': 1, 'b': 2, 'c': 1 };
*
* _.invert(object);
* invert(object);
* // => { '1': 'c', '2': 'b' }
*/
const invert = createInverter((result, value, key) => {