11 lines
154 B
Go
11 lines
154 B
Go
|
|
//go:build ios
|
||
|
|
// +build ios
|
||
|
|
|
||
|
|
package crypto
|
||
|
|
|
||
|
|
import "strings"
|
||
|
|
|
||
|
|
func sanitizeString(input string) string {
|
||
|
|
return strings.ToValidUTF8(input, "\ufffd")
|
||
|
|
}
|