Add windows helper functions

This commit is contained in:
Maran 2014-07-14 15:24:38 +02:00
parent 6426f3635e
commit 8845fb7eae

View File

@ -3,8 +3,20 @@ package ethutil
import (
"fmt"
"math/big"
"runtime"
)
func IsWindows() bool {
return runtime.GOOS == "windows"
}
func WindonizePath(path string) string {
if string(path[0]) == "/" && IsWindows() {
path = path[1:]
}
return path
}
// The different number of units
var (
Douglas = BigPow(10, 42)