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
var mensch = require('mensch');
var parsed = mensch.parse('.my-class:not(.class1, .class2) {}', {
position: true,
comments: true,
});
The parsed.stylesheet.rules will be an array with two items: ['.my-class:not(.class1', '.class)'], this rules are wrong.
It should not be splited by , simply.
The text was updated successfully, but these errors were encountered:
Run this code:
The
parsed.stylesheet.rules
will be an array with two items:['.my-class:not(.class1', '.class)']
, this rules are wrong.It should not be splited by
,
simply.The text was updated successfully, but these errors were encountered: