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

17 lines
290 B
JavaScript
Executable file

'use strict';
const Container = require('./container');
const Node = require('./node');
class Parenthesis extends Node {
constructor (opts) {
super(opts);
this.type = 'paren';
this.parenType = '';
}
}
Container.registerWalker(Parenthesis);
module.exports = Parenthesis;