We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This way the parser could be used to validate properties and attributes, e.g.:
let isValidStyleAttributeValue = (value) => { try { CSSParser.parseAListOfDeclarations(value.trim()); } catch (error) { return false; } return true; };