aboutsummaryrefslogtreecommitdiff
path: root/src/webex/compat.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/webex/compat.ts')
-rw-r--r--src/webex/compat.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/webex/compat.ts b/src/webex/compat.ts
index 121c58e7f..f1a68f33e 100644
--- a/src/webex/compat.ts
+++ b/src/webex/compat.ts
@@ -20,16 +20,16 @@
*/
export function isFirefox(): boolean {
- const rt = chrome.runtime as any;
- if (typeof rt.getBrowserInfo === "function") {
- return true;
- }
- return false;
+ const rt = chrome.runtime as any;
+ if (typeof rt.getBrowserInfo === "function") {
+ return true;
+ }
+ return false;
}
/**
* Check if we are running under nodejs.
*/
export function isNode() {
- return (typeof process !== 'undefined') && (process.release.name === 'node')
-} \ No newline at end of file
+ return typeof process !== "undefined" && process.release.name === "node";
+}