From f765966742802354cc70f093a806c7f2ba674b20 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 28 Jun 2018 00:17:05 +0900 Subject: [PATCH] web: Remove unused variables --- internal/web/js.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/internal/web/js.go b/internal/web/js.go index 6fc5d15ab..feccb1f9c 100644 --- a/internal/web/js.go +++ b/internal/web/js.go @@ -18,16 +18,10 @@ package web import ( "strings" - "sync" "github.com/gopherjs/gopherwasm/js" ) -var ( - isNodeJSOnce sync.Once - isNodeJS = false -) - func IsBrowser() bool { return true }