mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
19 lines
290 B
Go
19 lines
290 B
Go
package util
|
|
|
|
import "strings"
|
|
|
|
func StringSliceContains(slice []string, needle string) bool {
|
|
for _, s := range slice {
|
|
if s == needle {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func MaskKey(key string) string {
|
|
maskKey := key[0:5]
|
|
return maskKey + strings.Repeat("*", len(key)-1-5)
|
|
}
|