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,13 +2,12 @@ import baseIsMatch from './_baseIsMatch.js';
import getMatchData from './_getMatchData.js';
/**
* This method is like `_.isMatch` except that it accepts `customizer` which
* This method is like `isMatch` except that it accepts `customizer` which
* is invoked to compare values. If `customizer` returns `undefined`, comparisons
* are handled by the method instead. The `customizer` is invoked with five
* arguments: (objValue, srcValue, index|key, object, source).
*
* @static
* @memberOf _
* @since 4.0.0
* @category Lang
* @param {Object} object The object to inspect.
@@ -30,7 +29,7 @@ import getMatchData from './_getMatchData.js';
* var object = { 'greeting': 'hello' };
* var source = { 'greeting': 'hi' };
*
* _.isMatchWith(object, source, customizer);
* isMatchWith(object, source, customizer);
* // => true
*/
function isMatchWith(object, source, customizer) {