mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
Nomad was manually updated, so revert that to the version in master, remove it from vendor.json and add it to the ignore list. Update all packages that were in an unknown state to their latest master commits.
22 lines
483 B
Go
22 lines
483 B
Go
package escape
|
|
|
|
import "strings"
|
|
|
|
var (
|
|
escaper = strings.NewReplacer(`,`, `\,`, `"`, `\"`, ` `, `\ `, `=`, `\=`)
|
|
unescaper = strings.NewReplacer(`\,`, `,`, `\"`, `"`, `\ `, ` `, `\=`, `=`)
|
|
)
|
|
|
|
// UnescapeString returns unescaped version of in.
|
|
func UnescapeString(in string) string {
|
|
if strings.IndexByte(in, '\\') == -1 {
|
|
return in
|
|
}
|
|
return unescaper.Replace(in)
|
|
}
|
|
|
|
// String returns the escaped version of in.
|
|
func String(in string) string {
|
|
return escaper.Replace(in)
|
|
}
|