We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
value
1 parent 7168756 commit 77ed0e0Copy full SHA for 77ed0e0
packages/css/README.md
@@ -30,6 +30,9 @@ const { definitionSyntax } = require('css-tree');
30
31
const { properties } = await css.listAll();
32
for (const property of properties) {
33
+ if (!property.value) {
34
+ continue;
35
+ }
36
const ast = definitionSyntax.parse(property.value);
37
// do something with the abstract syntax tree
38
}
0 commit comments