From abd94a7f5a50f43c797a11b53549ae48fff667c3 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 10 Oct 2016 03:43:44 +0200 Subject: add node_modules to address #4364 --- node_modules/object-keys/test/isArguments.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 node_modules/object-keys/test/isArguments.js (limited to 'node_modules/object-keys/test/isArguments.js') diff --git a/node_modules/object-keys/test/isArguments.js b/node_modules/object-keys/test/isArguments.js new file mode 100644 index 000000000..62a07c2d8 --- /dev/null +++ b/node_modules/object-keys/test/isArguments.js @@ -0,0 +1,10 @@ +var test = require('tape'); +var isArguments = require('../isArguments'); + +test('is.arguments', function (t) { + t.notOk(isArguments([]), 'array is not arguments'); + (function () { t.ok(isArguments(arguments), 'arguments is arguments'); }()); + (function () { t.notOk(isArguments(Array.prototype.slice.call(arguments)), 'sliced arguments is not arguments'); }()); + t.end(); +}); + -- cgit v1.2.3