Dashboard sipadu mbip
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.
root d8c1b4a1be initial vor 5 Jahren
..
.editorconfig initial vor 5 Jahren
.eslintrc initial vor 5 Jahren
.jscs.json initial vor 5 Jahren
.travis.yml initial vor 5 Jahren
CHANGELOG.md initial vor 5 Jahren
LICENSE initial vor 5 Jahren
README.md initial vor 5 Jahren
index.js initial vor 5 Jahren
package.json initial vor 5 Jahren
test.js initial vor 5 Jahren

README.md

is-arguments Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

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