소스 검색

Remove unnecessary semicolons

deepsource-autofix[bot] 4 년 전
부모
커밋
a44ab97c53
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();