Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/pkg/util/untab.go
4093 views
1
package util
2
3
import "strings"
4
5
// Untab is a utility function for tests to make it easier
6
// to write YAML tests, where some editors will insert tabs
7
// into strings by default.
8
func Untab(s string) string {
9
return strings.ReplaceAll(s, "\t", " ")
10
}
11
12