diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-07 17:35:33 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-09-10 20:09:33 -0400 |
commit | c4e6d7e3d18bc87a9e682349bd96fc35d7815bbc (patch) | |
tree | c5fd842e9bb41e240c0790059bf68326e3e980f6 /ext/bg/js/options.js | |
parent | 05ce350792fd60c1721bff4d0fb971e2bec24818 (diff) |
Add utility method for checking if a value is a standard object
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index ea8f56d5..d093d0b4 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -330,7 +330,7 @@ function optionsLoad() { }).then(optionsStr => { if (typeof optionsStr === 'string') { const options = JSON.parse(optionsStr); - if (typeof options === 'object' && options !== null && !Array.isArray(options)) { + if (utilIsObject(options)) { return options; } } |