Rebuild dist.

This commit is contained in:
John-David Dalton
2014-03-23 15:00:02 -07:00
parent e5c397203e
commit 8179a3a349
6 changed files with 154 additions and 132 deletions

View File

@@ -822,7 +822,7 @@
var hasValCtor = hasOwnProperty.call(value, 'constructor'),
hasOthCtor = hasOwnProperty.call(other, 'constructor');
if (hasValCtor !== hasOthCtor) {
if (hasValCtor != hasOthCtor) {
return false;
}
if (!hasValCtor) {
@@ -4005,7 +4005,7 @@
* var object = { 'name': 'fred' };
* var other = { 'name': 'fred' };
*
* object == other;
* object == other;
* // => false
*
* _.isEqual(object, other);