Irina Glushko 2389e7160b HW1 done | 3 年之前 | |
---|---|---|
.. | ||
.github | 3 年之前 | |
test | 3 年之前 | |
.editorconfig | 3 年之前 | |
.eslintignore | 3 年之前 | |
.eslintrc | 3 年之前 | |
.nycrc | 3 年之前 | |
CHANGELOG.md | 3 年之前 | |
LICENSE | 3 年之前 | |
README.md | 3 年之前 | |
index.js | 3 年之前 | |
package.json | 3 年之前 |
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