diff options
author | kumavis <aaron@kumavis.me> | 2018-03-09 06:55:35 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-03-09 06:55:35 +0800 |
commit | a88e436b7d45d9a7f9f4d4a4be58aff5e58e9074 (patch) | |
tree | d7b2a098ad4f5cceb9074014a62c85d965e95b4c /app | |
parent | 455faece9e9ca110337fcfa19d1cd4a1967c8571 (diff) | |
download | tangerine-wallet-browser-a88e436b7d45d9a7f9f4d4a4be58aff5e58e9074.tar.gz tangerine-wallet-browser-a88e436b7d45d9a7f9f4d4a4be58aff5e58e9074.tar.zst tangerine-wallet-browser-a88e436b7d45d9a7f9f4d4a4be58aff5e58e9074.zip |
lint fix
Diffstat (limited to 'app')
-rw-r--r-- | app/scripts/lib/local-store.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/lib/local-store.js b/app/scripts/lib/local-store.js index 73482a636..781aea17e 100644 --- a/app/scripts/lib/local-store.js +++ b/app/scripts/lib/local-store.js @@ -34,5 +34,5 @@ module.exports = class ExtensionStore { } function isEmpty(obj) { - return 0 === Object.keys(obj).length + return Object.keys(obj).length === 0 } |