stash/pkg/utils/strings_test.go

13 lines
178 B
Go
Raw Normal View History

package utils
import "fmt"
func ExampleStrFormat() {
fmt.Println(StrFormat("{foo} bar {baz}", StrFormatMap{
"foo": "bar",
"baz": "abc",
}))
// Output:
// bar bar abc
}