func bytes.HasSuffix

12 uses

	bytes (current package)
		bytes.go#L542: func HasSuffix(s, suffix []byte) bool {
		bytes.go#L808: 	if HasSuffix(s, suffix) {

	encoding/pem
		pem.go#L99: 	if !bytes.HasSuffix(typeLine, pemEndOfLine) {
		pem.go#L157: 		!bytes.HasSuffix(endTrailer, pemEndOfLine) {

	github.com/go-git/go-git/v5/plumbing/protocol/packp
		advrefs_decode.go#L227: 	if bytes.HasSuffix(p.line, peeled) {

	github.com/yuin/goldmark/renderer/html
		html.go#L478: 			if bytes.HasSuffix(value, []byte("\n")) {

	golang.org/x/oauth2/jws
		jws.go#L85: 	if !bytes.HasSuffix(b, []byte{'}'}) {

	golang.org/x/tools/txtar
		archive.go#L124: 	if !bytes.HasSuffix(data, markerEnd) {

	mime/quotedprintable
		reader.go#L90: 			hasLF := bytes.HasSuffix(r.line, lf)
		reader.go#L91: 			hasCR := bytes.HasSuffix(r.line, crlf)
		reader.go#L94: 			if bytes.HasSuffix(r.line, softSuffix) {

	net/http
		transfer.go#L896: 		if bytes.HasSuffix(buf, doubleCRLF) {