From 5c6593b973ed7b061f2997e4a8be3a98ff75841e Mon Sep 17 00:00:00 2001 From: pyoor Date: Thu, 6 Jul 2017 10:18:45 -0400 Subject: [PATCH] Fix eslint issue --- lib/utils/prototypes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/prototypes.js b/lib/utils/prototypes.js index 014449e..e50d95c 100644 --- a/lib/utils/prototypes.js +++ b/lib/utils/prototypes.js @@ -69,7 +69,7 @@ Object.defineProperty(Array.prototype, 'extend', { Object.defineProperty(Object, 'isObject', { value: function (obj) { - return (obj != null && typeof obj === 'object' && + return (obj !== null && typeof obj === 'object' && Object.prototype.toString.call(obj) === '[object Object]') } })