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
I want to know if this is the design, but I understand that the variable argument of or is more reasonable if it should conform to the target expression?
🐛 The bug
exactly('18').or('19', '20'): (?:18|1920)
exactly('18').or('19').or('20'): (?:(?:18|19)|20)
I want to know if this is the design, but I understand that the variable argument of or is more reasonable if it should conform to the target expression?
🛠️ To reproduce
https://stackblitz.com/edit/nuxt-starter-ghwabpwy?file=app.vue
🌈 Expected behaviour
Target expression: (?:18 | 19 | 20)
ℹ️ Additional context
No response
The text was updated successfully, but these errors were encountered: