func bytes.ToLower

6 uses

	bytes (current package)
		bytes.go#L728: func ToLower(s []byte) []byte {

	github.com/jackc/pgx/v5/pgtype
		bool.go#L336: 	s := string(bytes.ToLower(bytes.TrimSpace(src)))

	go.uber.org/zap/zapcore
		level.go#L174: 	if !l.unmarshalText(text) && !l.unmarshalText(bytes.ToLower(text)) {

	html/template
		css.go#L35: 	return string(bytes.ToLower(b[i:])) == kw
		css.go#L255: 	id = bytes.ToLower(id)
		transition.go#L417: 			if i > 0 && i+7 <= len(s) && bytes.Equal(bytes.ToLower(s[i-1:i+7]), []byte("</script")) {