dnscontrol/pkg/powershell/utils/quote.go
2024-02-15 13:46:32 -05:00

9 lines
179 B
Go

// Copyright (c) 2017 Gorillalabs. All rights reserved.
package utils
import "strings"
func QuoteArg(s string) string {
return "'" + strings.Replace(s, "'", "\"", -1) + "'"
}