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
So what is the purpose of changing var keyword = /(\D+)/; to var keyword = /(\w+)/; in index.js line 55?
Is it a bug or a extra consideration?
Maybe var keyword = /^(\w+)$/; will be more suitable?
Looking forward to your reply, thanks.
The text was updated successfully, but these errors were encountered:
recovery-alt
changed the title
When I use cssvars like --red-1, this package will treet --red-1 as a keyword
[Bug] When I use cssvars like --red-1, this package will treet --red-1 as a keyword
Nov 30, 2021
recovery-alt
changed the title
[Bug] When I use cssvars like --red-1, this package will treet --red-1 as a keyword
[Bug?] When I use cssvars like --red-1, this package will treet --red-1 as a keyword
Nov 30, 2021
recovery-alt
changed the title
[Bug?] When I use cssvars like --red-1, this package will treet --red-1 as a keyword
[Bug?] When I use cssvars like --red-1, this package will treat --red-1 as a keyword
Nov 30, 2021
So what is the purpose of changing
var keyword = /(\D+)/;
tovar keyword = /(\w+)/;
in index.js line 55?Is it a bug or a extra consideration?
Maybe
var keyword = /^(\w+)$/;
will be more suitable?Looking forward to your reply, thanks.
The text was updated successfully, but these errors were encountered: