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,13 +1,12 @@
import baseIsEqual from './_baseIsEqual.js';
/**
* This method is like `_.isEqual` except that it accepts `customizer` which
* This method is like `isEqual` 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 up to
* six arguments: (objValue, othValue [, index|key, object, other, stack]).
*
* @static
* @memberOf _
* @since 4.0.0
* @category Lang
* @param {*} value The value to compare.
@@ -29,7 +28,7 @@ import baseIsEqual from './_baseIsEqual.js';
* var array = ['hello', 'goodbye'];
* var other = ['hi', 'goodbye'];
*
* _.isEqualWith(array, other, customizer);
* isEqualWith(array, other, customizer);
* // => true
*/
function isEqualWith(value, other, customizer) {