diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-26 17:33:09 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-26 17:33:09 -0500 |
commit | 099847729c471c3ff6e8c28673114eae81c6a4f4 (patch) | |
tree | 91fd1ee3268e526712e49fe570cdfc9277a03ddc /ext/bg/js/options.js | |
parent | 7e94fca7c7a07f94de40ddeb56a3f06e43000e25 (diff) |
utilIsObject => isObject, move to core.js
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index b9bf85f3..63d88789 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -389,7 +389,7 @@ function optionsUpdateVersion(options, defaultProfileOptions) { // Remove invalid const profiles = options.profiles; for (let i = profiles.length - 1; i >= 0; --i) { - if (!utilIsObject(profiles[i])) { + if (!isObject(profiles[i])) { profiles.splice(i, 1); } } @@ -440,7 +440,7 @@ function optionsLoad() { }).then(optionsStr => { if (typeof optionsStr === 'string') { const options = JSON.parse(optionsStr); - if (utilIsObject(options)) { + if (isObject(options)) { return options; } } |