source: node_modules/ramda/src/internal/_isArguments.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 384 bytes
Line 
1var _has =
2/*#__PURE__*/
3require("./_has.js");
4
5var toString = Object.prototype.toString;
6
7var _isArguments =
8/*#__PURE__*/
9function () {
10 return toString.call(arguments) === '[object Arguments]' ? function _isArguments(x) {
11 return toString.call(x) === '[object Arguments]';
12 } : function _isArguments(x) {
13 return _has('callee', x);
14 };
15}();
16
17module.exports = _isArguments;
Note: See TracBrowser for help on using the repository browser.