Ensure unit tests pass in Narwhal.

Former-commit-id: a86ce088a72ea0be7b31e4bccc51ce1286b9418b
This commit is contained in:
John-David Dalton
2013-04-16 01:04:47 -07:00
parent b1f8e845df
commit 562b4eb531
5 changed files with 35 additions and 35 deletions

View File

@@ -222,12 +222,12 @@
var object = { '0': 1, 'length': 1 };
/**
* Detect if `arguments` objects are `Object` objects (all but Opera < 10.5).
* Detect if `arguments` objects are `Object` objects (all but Narwhal and Opera < 10.5).
*
* @memberOf _.support
* @type Boolean
*/
support.argsObject = arguments.constructor == Object;
support.argsObject = arguments.constructor == Object && !(arguments instanceof Array);
/**
* Detect if `Function#bind` exists and is inferred to be fast (all but V8).