blob: 6e3f6b890eda97f1bab03e2becd91696815f8fb0 [file] [log] [blame]
// +build !windows
package shell
// EqualEnvKeys compare two strings and returns true if they are equal. On
// Windows this comparison is case insensitive.
func EqualEnvKeys(from, to string) bool {
return from == to
}