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