vendor/github.com/pelletier/go-toml/tomltree_writepub.go
author Mikael Berthe <mikael@lilotux.net>
Sun, 11 Jul 2021 10:35:56 +0200
changeset 256 6d9efbef00a9
permissions -rw-r--r--
Update dependencies

package toml

// ValueStringRepresentation transforms an interface{} value into its toml string representation.
func ValueStringRepresentation(v interface{}, commented string, indent string, ord MarshalOrder, arraysOneElementPerLine bool) (string, error) {
	return tomlValueStringRepresentation(v, commented, indent, ord, arraysOneElementPerLine)
}