lhl 6ff0e96ad3 8-4-1 | před 1 rokem | |
---|---|---|
.. | ||
.editorconfig | před 1 rokem | |
.eslintrc | před 1 rokem | |
.jscs.json | před 1 rokem | |
.travis.yml | před 1 rokem | |
CHANGELOG.md | před 1 rokem | |
LICENSE | před 1 rokem | |
README.md | před 1 rokem | |
index.js | před 1 rokem | |
package.json | před 1 rokem | |
test.js | před 1 rokem |
Is this an arguments object? It's a harder question than you think.
var isArguments = require('is-arguments');
var assert = require('assert');
assert.equal(isArguments({}), false);
assert.equal(isArguments([]), false);
(function () {
assert.equal(isArguments(arguments), true);
}())
If you have modified an actual arguments
object by giving it a Symbol.toStringTag
property, then this package will return false
.
Simply clone the repo, npm install
, and run npm test