Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
nitowa 1dae68b1c7 init vor 1 Jahr
..
.github init vor 1 Jahr
test init vor 1 Jahr
.editorconfig init vor 1 Jahr
.eslintignore init vor 1 Jahr
.eslintrc init vor 1 Jahr
.nycrc init vor 1 Jahr
CHANGELOG.md init vor 1 Jahr
LICENSE init vor 1 Jahr
README.md init vor 1 Jahr
index.js init vor 1 Jahr
package.json init vor 1 Jahr

README.md

is-arguments Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this an arguments object? It’s a harder question than you think.

Example

var isArguments = require('is-arguments');
var assert = require('assert');

assert.equal(isArguments({}), false);
assert.equal(isArguments([]), false);
(function () {
	assert.equal(isArguments(arguments), true);
}())

Caveats

If you have modified an actual arguments object by giving it a Symbol.toStringTag property, then this package will return false.

Tests

Simply clone the repo, npm install, and run npm test