We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 205d1a2 + 294b3a3 commit ac8db76Copy full SHA for ac8db76
1 file changed
cmd/fname/fname.go
@@ -43,7 +43,7 @@ func main() {
43
44
var (
45
casing string = "lower"
46
- delimiter string
+ delimiter string = "-"
47
help bool
48
ver bool
49
quantity int = 1
@@ -80,9 +80,7 @@ func main() {
80
}
81
opts = append(opts, fname.WithCasing(c))
82
83
- if delimiter != "" {
84
- opts = append(opts, fname.WithDelimiter(delimiter))
85
- }
+ opts = append(opts, fname.WithDelimiter(delimiter))
86
if seed != -1 {
87
opts = append(opts, fname.WithSeed(seed))
88
0 commit comments