Fix eslint issue

This commit is contained in:
pyoor 2017-07-06 10:18:45 -04:00
parent c9a8cbf7e7
commit 5c6593b973
1 changed files with 1 additions and 1 deletions

View File

@ -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]')
}
})