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

     1  package stringutil
     2  
     3  // IsEnds
     4  //
     5  // searches for case-sensitive terms
     6  func IsEnds(
     7  	content,
     8  	endsWith string,
     9  ) bool {
    10  	return IsEndsWith(
    11  		content,
    12  		endsWith,
    13  		false)
    14  }