You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.4 KiB

4 years ago
  1. 'use strict';
  2. var test = require('tape');
  3. var isArguments = require('./');
  4. var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
  5. test('primitives', function (t) {
  6. t.notOk(isArguments([]), 'array is not arguments');
  7. t.notOk(isArguments({}), 'object is not arguments');
  8. t.notOk(isArguments(''), 'empty string is not arguments');
  9. t.notOk(isArguments('foo'), 'string is not arguments');
  10. t.notOk(isArguments({ length: 2 }), 'naive array-like is not arguments');
  11. t.end();
  12. });
  13. test('arguments object', function (t) {
  14. t.ok(isArguments(arguments), 'arguments is arguments');
  15. t.notOk(isArguments(Array.prototype.slice.call(arguments)), 'sliced arguments is not arguments');
  16. t.end();
  17. });
  18. test('old-style arguments object', function (t) {
  19. var isLegacyArguments = isArguments.isLegacyArguments || isArguments;
  20. var fakeOldArguments = {
  21. callee: function () {},
  22. length: 3
  23. };
  24. t.ok(isLegacyArguments(fakeOldArguments), 'old-style arguments is arguments');
  25. t.end();
  26. });
  27. test('Symbol.toStringTag', { skip: !hasToStringTag }, function (t) {
  28. var obj = {};
  29. obj[Symbol.toStringTag] = 'Arguments';
  30. t.notOk(isArguments(obj), 'object with faked toStringTag is not arguments');
  31. var args = (function () {
  32. return arguments;
  33. }());
  34. args[Symbol.toStringTag] = 'Arguments';
  35. t.notOk(isArguments(obj), 'real arguments with faked toStringTag is not arguments');
  36. t.end();
  37. });