5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-01-28 07:04:40 +00:00

7 lines
349 B
Go
Raw Normal View History

2021-06-16 21:00:49 +02:00
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)
}