Skip to content
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

Merged
merged 6 commits into from
Dec 12, 2023
Merged

feat: anyOf component #21

merged 6 commits into from
Dec 12, 2023

Conversation

mdjastrzebski
Copy link
Member

Summary

Resolves #6

Test plan

Added relevant tests

@codecov-commenter
Copy link

codecov-commenter commented Dec 11, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (e64701b) 100.00% compared to head (d9212a6) 100.00%.

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.
📢 Have feedback on the report? Share it here.

// 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 !== '-')];
Copy link
Member

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?

Copy link
Member Author

@mdjastrzebski mdjastrzebski Dec 12, 2023

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.

@mdjastrzebski mdjastrzebski merged commit 576f566 into main Dec 12, 2023
@mdjastrzebski mdjastrzebski deleted the feat/any-of branch December 12, 2023 18:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: implement anyOf component
3 participants