"github.com/spf13/viper"
)
-// Filepath separator defined by os.Separator.
+// FilePathSeparator as defined by os.Separator.
const FilePathSeparator = string(filepath.Separator)
// FindAvailablePort returns an available and valid TCP port.
// UniqueStrings returns a new slice with any duplicates removed.
func UniqueStrings(s []string) []string {
- unique := make([]string, 0)
+ var unique []string
set := map[string]interface{}{}
for _, val := range s {
if _, ok := set[val]; !ok {
return &DistinctLogger{m: make(map[string]bool), logger: jww.ERROR}
}
-// NewDistinctErrorLogger creates a new DistinctLogger that can be used
+// NewDistinctFeedbackLogger creates a new DistinctLogger that can be used
// to give feedback to the user while not spamming with duplicates.
func NewDistinctFeedbackLogger() *DistinctLogger {
return &DistinctLogger{m: make(map[string]bool), logger: &jww.FEEDBACK}
}
-// Avoid spamming the logs with errors
+// DistinctErrorLog cann be used to avoid spamming the logs with errors.
var DistinctErrorLog = NewDistinctErrorLogger()
// Deprecated logs ERROR logs about a deprecation, but only once for a given set of arguments' values.
return af + bf, nil
} else if au != 0 || bu != 0 {
return au + bu, nil
- } else {
- return 0, nil
}
+ return 0, nil
case '-':
if ai != 0 || bi != 0 {
return ai - bi, nil
return af - bf, nil
} else if au != 0 || bu != 0 {
return au - bu, nil
- } else {
- return 0, nil
}
+ return 0, nil
case '*':
if ai != 0 || bi != 0 {
return ai * bi, nil
return af * bf, nil
} else if au != 0 || bu != 0 {
return au * bu, nil
- } else {
- return 0, nil
}
+ return 0, nil
case '/':
if bi != 0 {
return ai / bi, nil
return af / bf, nil
} else if bu != 0 {
return au / bu, nil
- } else {
- return nil, errors.New("Can't divide the value by 0")
}
+ return nil, errors.New("Can't divide the value by 0")
default:
return nil, errors.New("There is no such an operation")
}