func bytes.TrimLeft

6 uses

	bytes (current package)
		bytes.go#L930: func TrimLeft(s []byte, cutset string) []byte {

	google.golang.org/protobuf/encoding/protojson
		well_known_types.go#L743: 		nanob := bytes.TrimLeft(frac[:], "0")

	google.golang.org/protobuf/internal/encoding/text
		decode_string.go#L92: 				n := len(in[1:]) - len(bytes.TrimLeft(in[1:], "01234567"))
		decode_string.go#L103: 				n := len(in[2:]) - len(bytes.TrimLeft(in[2:], "0123456789abcdefABCDEF"))

	html/template
		transition.go#L443: 				j := len(s) - len(bytes.TrimLeft(s[i+1:], "\t\n\f\r "))

	runtime/pprof
		proto.go#L624: 		line = bytes.TrimLeft(line, " ")