diff options
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/atrule/font-face.cjs')
| -rw-r--r-- | vanilla/node_modules/css-tree/cjs/syntax/atrule/font-face.cjs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/atrule/font-face.cjs b/vanilla/node_modules/css-tree/cjs/syntax/atrule/font-face.cjs new file mode 100644 index 0000000..fc7f64a --- /dev/null +++ b/vanilla/node_modules/css-tree/cjs/syntax/atrule/font-face.cjs @@ -0,0 +1,12 @@ +'use strict'; + +const fontFace = { + parse: { + prelude: null, + block() { + return this.Block(true); + } + } +}; + +module.exports = fontFace; |
