1package toml
2
3// ValueStringRepresentation transforms an interface{} value into its toml string representation.
4func ValueStringRepresentation(v interface{}, commented string, indent string, ord MarshalOrder, arraysOneElementPerLine bool) (string, error) {
5	return tomlValueStringRepresentation(v, commented, indent, ord, arraysOneElementPerLine)
6}
7