You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
350 B
18 lines
350 B
2 years ago
|
'use strict';
|
||
|
|
||
|
const fontFace = require('./font-face.cjs');
|
||
|
const _import = require('./import.cjs');
|
||
|
const media = require('./media.cjs');
|
||
|
const page = require('./page.cjs');
|
||
|
const supports = require('./supports.cjs');
|
||
|
|
||
|
const atrule = {
|
||
|
'font-face': fontFace,
|
||
|
'import': _import,
|
||
|
media,
|
||
|
page,
|
||
|
supports
|
||
|
};
|
||
|
|
||
|
module.exports = atrule;
|