| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1 1 6 1 | define(['./isKind'], function (isKind) {
/**
* @version 0.2.0 (2011/12/05)
*/
var isArgs = isKind(arguments, 'Arguments')?
function(val){
return isKind(val, 'Arguments');
} :
function(val){
// Arguments is an Object on IE7
return !!(val && Object.prototype.hasOwnProperty.call(val, 'callee'));
};
return isArgs;
});
|