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

const startingStyle = {
    parse: {
        prelude: null,
        block(nested = false) {
            return this.Block(nested);
        }
    }
};

module.exports = startingStyle;