bbgo_origin/pkg/util/string.go

19 lines
290 B
Go
Raw Normal View History

2021-02-19 02:42:24 +00:00
package util
2021-12-22 17:16:08 +00:00
import "strings"
2021-02-19 02:42:24 +00:00
func StringSliceContains(slice []string, needle string) bool {
for _, s := range slice {
if s == needle {
return true
}
}
return false
}
2021-12-22 17:16:08 +00:00
func MaskKey(key string) string {
maskKey := key[0:5]
return maskKey + strings.Repeat("*", len(key)-1-5)
}