aboutsummaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-17 19:19:38 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-18 21:12:54 -0400
commit66ef7301198e4baa827fafe002818896a8bb6483 (patch)
tree4fec6fcc3b023f36a2a27e335025841e178d5d1b /ext
parentdee7d924a8555226721bbbdb045b86a21426f60b (diff)
Update style, use isObject
Diffstat (limited to 'ext')
-rw-r--r--ext/bg/js/backend.js13
1 files changed, 4 insertions, 9 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js
index 9f466647..aacebd2c 100644
--- a/ext/bg/js/backend.js
+++ b/ext/bg/js/backend.js
@@ -868,21 +868,16 @@ class Backend {
_getBrowserIconTitle() {
return (
- chrome.browserAction !== null &&
- typeof chrome.browserAction === 'object' &&
+ isObject(chrome.browserAction) &&
typeof chrome.browserAction.getTitle === 'function' ?
- new Promise((resolve) => chrome.browserAction.getTitle({}, resolve)) :
- Promise.resolve('')
+ new Promise((resolve) => chrome.browserAction.getTitle({}, resolve)) :
+ Promise.resolve('')
);
}
_updateBadge() {
let title = this._defaultBrowserActionTitle;
- if (
- title === null ||
- chrome.browserAction === null ||
- typeof chrome.browserAction !== 'object'
- ) {
+ if (title === null || !isObject(chrome.browserAction)) {
// Not ready or invalid
return;
}