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

@@ -7,7 +7,6 @@ import getAllKeysIn from './_getAllKeysIn.js';
* truthy for. The predicate is invoked with two arguments: (value, key).
*
* @static
* @memberOf _
* @since 4.0.0
* @category Object
* @param {Object} object The source object.
@@ -17,7 +16,7 @@ import getAllKeysIn from './_getAllKeysIn.js';
*
* var object = { 'a': 1, 'b': '2', 'c': 3 };
*
* _.pickBy(object, _.isNumber);
* pickBy(object, isNumber);
* // => { 'a': 1, 'c': 3 }
*/
function pickBy(object, predicate) {