mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
Fixed: Make sure we handle undefined when testing for nil values (#2862)
This commit is contained in:
@@ -82,7 +82,7 @@ var concat = Array.prototype.concat,
|
||||
count = arguments.length;
|
||||
|
||||
for (; index < count; ++index)
|
||||
if (arguments[index] === nil)
|
||||
if (arguments[index] == nil)
|
||||
break;
|
||||
|
||||
return slice.call(arguments, 2, index);
|
||||
|
||||
Reference in New Issue
Block a user