func bytes.HasSuffix

9 uses

	bytes (current package)
		bytes.go#L603: func HasSuffix(s, suffix []byte) bool {
		bytes.go#L894: 	if HasSuffix(s, suffix) {
		bytes.go#L1442: 	if !HasSuffix(s, suffix) {

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

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

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