You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If an uppercase letter is followed by other uppercase letters (like FooBAR), they are preserved. You can use sx.WithNormalize(true) for strictly following PascalCase convention.
193
+
Normalizebool
194
+
}
195
+
196
+
// WithNormalize sets the normalize option
197
+
funcWithNormalize(normalizebool) CaseOption {
198
+
returnfunc(c*CaseConfig) {
199
+
c.Normalize=normalize
200
+
}
201
+
}
202
+
203
+
// StringOrStringSlice represents input that can be either a string or slice of strings
0 commit comments