aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/util.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-11-26 17:33:09 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-11-26 17:33:09 -0500
commit099847729c471c3ff6e8c28673114eae81c6a4f4 (patch)
tree91fd1ee3268e526712e49fe570cdfc9277a03ddc /ext/bg/js/util.js
parent7e94fca7c7a07f94de40ddeb56a3f06e43000e25 (diff)
utilIsObject => isObject, move to core.js
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r--ext/bg/js/util.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js
index b9e602b3..c21fd68c 100644
--- a/ext/bg/js/util.js
+++ b/ext/bg/js/util.js
@@ -111,7 +111,3 @@ function utilReadFile(file) {
reader.readAsBinaryString(file);
});
}
-
-function utilIsObject(value) {
- return typeof value === 'object' && value !== null && !Array.isArray(value);
-}