Move the false example for _.isEqual below the true one. [ci skip]

This commit is contained in:
John-David Dalton
2015-07-17 17:30:45 -07:00
parent f6ea758b85
commit 9a01f3a337

View File

@@ -7872,11 +7872,11 @@
* var object = { 'user': 'fred' };
* var other = { 'user': 'fred' };
*
* object == other;
* // => false
*
* _.isEqual(object, other);
* // => true
*
* object == other;
* // => false
*/
function isEqual(value, other) {
return baseIsEqual(value, other);