feat: implement anyOf component
mdjastrzebski opened this issue · 0 comments
mdjastrzebski commented
Describe the feature
Implement anyOf
component:
let regex = buildRegex(
anyOf("abcd"), // [abcd]
oneOrMore(anyOf("abcd")), // [abcd]+
)
Ref: https://developer.apple.com/documentation/regexbuilder/characterclass/anyof(_:)-1s0kt