isArguments.js 376 B

1234567891011
  1. var test = require('tape');
  2. var isArguments = require('../isArguments');
  3. test('is.arguments', function (t) {
  4. t.notOk(isArguments([]), 'array is not arguments');
  5. (function () { t.ok(isArguments(arguments), 'arguments is arguments'); }());
  6. (function () { t.notOk(isArguments(Array.prototype.slice.call(arguments)), 'sliced arguments is not arguments'); }());
  7. t.end();
  8. });