in breakingchange.go [244:250]
func isStringNilOrEmpty(i interface{}) bool { if i == nil { return true } s, ok := i.(string) return !ok || s == "" }