-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: anyOf
component
#21
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #21 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 6 8 +2
Lines 59 68 +9
Branches 8 11 +3
=========================================
+ Hits 59 68 +9 ☔ View full report in Codecov by Sentry. |
4500f2a
to
9e02622
Compare
9e02622
to
43007de
Compare
658f174
to
8531994
Compare
// See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Character_classes#types | ||
function escapeHypen(characters: string[]) { | ||
if (characters.includes('-')) { | ||
return ['-', ...characters.filter((c) => c !== '-')]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this function also call .join()
and return a string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not yet, it is parsing it's input for RegexElement. Join will be done when we will compile it. We want to keep these as array of strings, as character class may hold e.g. \\d
. \\u1234
which are two+ chars, but one conceptual char.
Summary
Resolves #6
Test plan
Added relevant tests