mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-11 11:27:50 +00:00
Move the false example for _.isEqual below the true one. [ci skip]
This commit is contained in:
@@ -7872,11 +7872,11 @@
|
|||||||
* var object = { 'user': 'fred' };
|
* var object = { 'user': 'fred' };
|
||||||
* var other = { 'user': 'fred' };
|
* var other = { 'user': 'fred' };
|
||||||
*
|
*
|
||||||
* object == other;
|
|
||||||
* // => false
|
|
||||||
*
|
|
||||||
* _.isEqual(object, other);
|
* _.isEqual(object, other);
|
||||||
* // => true
|
* // => true
|
||||||
|
*
|
||||||
|
* object == other;
|
||||||
|
* // => false
|
||||||
*/
|
*/
|
||||||
function isEqual(value, other) {
|
function isEqual(value, other) {
|
||||||
return baseIsEqual(value, other);
|
return baseIsEqual(value, other);
|
||||||
|
|||||||
Reference in New Issue
Block a user