From f8ad57a16f645cbc529fc9ae47bff6e32975aa6d Mon Sep 17 00:00:00 2001 From: Harsh Singh Date: Fri, 25 Mar 2016 13:57:09 -0400 Subject: [PATCH] Update test.js --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index e0c3444..44c8d0a 100644 --- a/test.js +++ b/test.js @@ -6,6 +6,7 @@ test('is array', function(t){ t.notOk(isArray({})); t.notOk(isArray(null)); t.notOk(isArray(false)); + t.notOk(isArray("")); var obj = {}; obj[0] = true;