gitlab.com/evatix-go/core@v1.3.55/coreutils/stringutil/IsStarts.go (about)

     1  package stringutil
     2  
     3  // IsStarts searches for case sensitive terms
     4  func IsStarts(
     5  	content,
     6  	startsWith string,
     7  ) bool {
     8  	return IsStartsWith(
     9  		content,
    10  		startsWith,
    11  		false)
    12  }