projecte_ionic/node_modules/postcss-values-parser/lib/value.js
2022-02-09 18:30:03 +01:00

12 lines
204 B
JavaScript
Executable file

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