aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/syntax/atrule/font-face.cjs
blob: fc7f64a6d26e71bb2695f389b16af94984977fe6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

const fontFace = {
    parse: {
        prelude: null,
        block() {
            return this.Block(true);
        }
    }
};

module.exports = fontFace;