Files
Tiber365/node_modules/css-tree/cjs/syntax/atrule/supports.cjs
2025-07-24 18:46:24 +02:00

17 lines
300 B
JavaScript

'use strict';
const supports = {
parse: {
prelude() {
return this.createSingleNodeList(
this.Condition('supports')
);
},
block(nested = false) {
return this.Block(nested);
}
}
};
module.exports = supports;