source: frontend/node_modules/underscore/amd/isArguments.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 454 bytes
Line 
1define(['./_tagTester', './_has'], function (_tagTester, _has) {
2
3 var isArguments = _tagTester('Arguments');
4
5 // Define a fallback version of the method in browsers (ahem, IE < 9), where
6 // there isn't any inspectable "Arguments" type.
7 (function() {
8 if (!isArguments(arguments)) {
9 isArguments = function(obj) {
10 return _has(obj, 'callee');
11 };
12 }
13 }());
14
15 var isArguments$1 = isArguments;
16
17 return isArguments$1;
18
19});
Note: See TracBrowser for help on using the repository browser.