supports.cjs 300 B

12345678910111213141516
  1. 'use strict';
  2. const supports = {
  3. parse: {
  4. prelude() {
  5. return this.createSingleNodeList(
  6. this.Condition('supports')
  7. );
  8. },
  9. block(nested = false) {
  10. return this.Block(nested);
  11. }
  12. }
  13. };
  14. module.exports = supports;