Fixed: Make sure we handle undefined when testing for nil values (#2862)

This commit is contained in:
Martin Carlberg
2020-01-31 13:43:58 +01:00
committed by GitHub
parent 8daa53dd3e
commit 7dc77ed609
95 changed files with 280 additions and 280 deletions
+1 -1
View File
@@ -708,7 +708,7 @@ Returns a hash for the object. Unlike Cocoa, the hash value does not take conten
var count = [self count],
otherCount = [anArray count];
if (anArray === nil || count !== otherCount)
if (anArray == nil || count !== otherCount)
return NO;
var index = 0;