func CommentIndicatorNormalizer()

in pkg/license/norm.go [311:316]


func CommentIndicatorNormalizer(text string) string {
	for _, leadingChars := range commentIndicators {
		text = leadingChars.ReplaceAllString(text, "")
	}
	return text
}