Files
crypto_trader/frontend/node_modules/css-tree/cjs/syntax/atrule/layer.cjs

17 lines
269 B
JavaScript
Raw Normal View History

'use strict';
const layer = {
parse: {
prelude() {
return this.createSingleNodeList(
this.LayerList()
);
},
block() {
return this.Block(false);
}
}
};
module.exports = layer;