func containsWhitespace()

in gce-containers-startup/runtime/runtime.go [384:391]


func containsWhitespace(s string) bool {
	for _, r := range s {
		if unicode.IsSpace(r) {
			return true
		}
	}
	return false
}