el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
24 lines (20 loc) • 416 B
JavaScript
;
const Container = require('postcss/lib/container');
/**
* Represents a JS literal
*
* @extends Container
*
* @example
* const root = postcss.parse('{}');
* const literal = root.first;
* literal.type //=> 'literal'
* literal.toString() //=> 'a{}'
*/
class Literal extends Container {
constructor(defaults) {
super(defaults);
this.type = 'literal';
}
}
module.exports = Literal;