source: node_modules/ramda/es/internal/_isArguments.js@ d24f17c

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

Initial commit

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