github.com/HXSecurity/DongTai-agent-go@v0.4.2/core/base/stringsRepeat/replacement.go (about)

     1  package stringsRepeat
     2  
     3  func Repeat(s, old, new string, n int) string {
     4  	re := RepeatR(s, old, new, n)
     5  	return re
     6  }
     7  
     8  func RepeatR(s, old, new string, n int) string {
     9  	return ""
    10  }