Files
portfolio/node_modules/postcss-values-parser/lib/root.js
2021-09-20 16:54:47 -04:00

11 lines
177 B
JavaScript

'use strict';
const Container = require('./container');
module.exports = class Root extends Container {
constructor (opts) {
super(opts);
this.type = 'root';
}
};