source:
trip-planner-front/node_modules/postcss-values-parser/lib/comma.js
Last change on this file was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 247 bytes |
Rev | Line | |
---|---|---|
[6a3a178] | 1 | 'use strict'; |
2 | ||
3 | const Container = require('./container'); | |
4 | const Node = require('./node'); | |
5 | ||
6 | class Comma extends Node { | |
7 | constructor (opts) { | |
8 | super(opts); | |
9 | this.type = 'comma'; | |
10 | } | |
11 | } | |
12 | ||
13 | Container.registerWalker(Comma); | |
14 | ||
15 | module.exports = Comma; |
Note:
See TracBrowser
for help on using the repository browser.