Skip to content

Commit 9124b0a

Browse files
authoredMay 12, 2023
feat: add support Web Assembly (#265)
* Add support Web Assembly * Refactoring * Elimination of remarks * Elimination of remarks
1 parent bf36115 commit 9124b0a

4 files changed

+7
-2
lines changed
 

‎env_unix.go ‎env-tomap.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
2-
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
1+
//go:build !windows
32

43
package env
54

‎env_unix_test.go ‎env-tomap_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build !windows
2+
13
package env
24

35
import "testing"

‎env_windows.go ‎env-tomap_windows.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build windows
2+
13
package env
24

35
import "strings"

‎env_windows_test.go ‎env-tomap_windows_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build windows
2+
13
package env
24

35
import "testing"

0 commit comments

Comments
 (0)
Please sign in to comment.