source: trip-planner-front/node_modules/postcss-values-parser/lib/paren.js@ fa375fe

Last change on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 290 bytes
Line 
1'use strict';
2
3const Container = require('./container');
4const Node = require('./node');
5
6class Parenthesis extends Node {
7 constructor (opts) {
8 super(opts);
9 this.type = 'paren';
10 this.parenType = '';
11 }
12}
13
14Container.registerWalker(Parenthesis);
15
16module.exports = Parenthesis;
Note: See TracBrowser for help on using the repository browser.