// The FoldCase option defines a Profile's case mapping rule. Options can be // provided to determine the type of case folding used. func FoldCase(opts ...cases.Option) Option { return func(o *options) { o.cases = cases.Fold(opts...) } }
// The FoldCase option defines a Profile's case mapping rule. Options can be // provided to determine the type of case folding used. func FoldCase(opts ...cases.Option) Option { return func(o *options) { o.asciiLower = true o.cases = cases.Fold(opts...) } }