github.com/evanw/esbuild@v0.21.4/internal/fs/iswin_other.go (about)

     1  //go:build (!js || !wasm) && !windows
     2  // +build !js !wasm
     3  // +build !windows
     4  
     5  package fs
     6  
     7  func CheckIfWindows() bool {
     8  	return false
     9  }