Przeglądaj źródła

Remove unnecessary semicolons

deepsource-autofix[bot] 4 lat temu
rodzic
commit
a44ab97c53
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      lib/supports.ts

+ 1 - 1
lib/supports.ts

@@ -10,7 +10,7 @@ export const Supports = new class {
 
   isWebRTCSupported(): boolean {
     return typeof RTCPeerConnection !== 'undefined';
-  };
+  }
 
   isBrowserSupported(): boolean {
     const browser = this.getBrowser();