mysql/node_modules/is-arguments
Ashish Ranjan d1dc6cc9a7
Azure MySql action v1 (#6)
2019-11-05 13:43:02 +05:30
..
.editorconfig Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.eslintrc Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.jscs.json Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.travis.yml Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
CHANGELOG.md Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
LICENSE Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
README.md Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
index.js Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
package.json Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
test.js Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30

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