Procházet zdrojové kódy

Remove unnecessary semicolons

deepsource-autofix[bot] před 4 roky
rodič
revize
a44ab97c53
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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();