Skip to content

Commit

Permalink
feat: add support Web Assembly (#265)
Browse files Browse the repository at this point in the history
* Add support Web Assembly

* Refactoring

* Elimination of remarks

* Elimination of remarks
  • Loading branch information
BorzdeG committed May 12, 2023
1 parent bf36115 commit 9124b0a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions env_unix.go → env-tomap.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
//go:build !windows

package env

Expand Down
2 changes: 2 additions & 0 deletions env_unix_test.go → env-tomap_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build !windows

package env

import "testing"
Expand Down
2 changes: 2 additions & 0 deletions env_windows.go → env-tomap_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build windows

package env

import "strings"
Expand Down
2 changes: 2 additions & 0 deletions env_windows_test.go → env-tomap_windows_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build windows

package env

import "testing"
Expand Down

0 comments on commit 9124b0a

Please sign in to comment.