is-arguments.js 190 B

1234567
  1. 'use strict';
  2. var toString = Object.prototype.toString
  3. , id = toString.call((function () { return arguments; }()));
  4. module.exports = function (x) { return (toString.call(x) === id); };