Fix typo in builds.

This commit is contained in:
John-David Dalton
2013-10-30 19:34:21 -07:00
parent 805f2b28a9
commit 81707a45d5
5 changed files with 5 additions and 5 deletions

View File

@@ -864,7 +864,7 @@
if (!isArguments(arguments)) {
isArguments = function(value) {
return value && typeof value == 'object' && typeof value.length == 'number' &&
hasOwnProperty.call(value, 'callee') && propertyIsEnumerable.call(value, 'callee') || false;
hasOwnProperty.call(value, 'callee') && !propertyIsEnumerable.call(value, 'callee') || false;
};
}