File size: 285 Bytes
8d3471e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | package shared
import textclean "ds2api/internal/textclean"
func CleanVisibleOutput(text string, stripReferenceMarkers bool) string {
if text == "" {
return text
}
if stripReferenceMarkers {
text = textclean.StripReferenceMarkers(text)
}
return sanitizeLeakedOutput(text)
}
|