font-face.cjs 172 B

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