1
0
Fork 0
arangodb/js/node/node_modules/es5-ext/function/is-arguments.js

8 lines
190 B
JavaScript

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