mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 19:07:49 +00:00
Remove references to _.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user