starting-style.cjs 198 B

123456789101112
  1. 'use strict';
  2. const startingStyle = {
  3. parse: {
  4. prelude: null,
  5. block(nested = false) {
  6. return this.Block(nested);
  7. }
  8. }
  9. };
  10. module.exports = startingStyle;