source: trip-planner-front/node_modules/postcss-values-parser/lib/comment.js@ 6a3a178

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

initial commit

  • Property mode set to 100644
File size: 490 bytes
Line 
1'use strict';
2
3const Container = require('./container');
4const Node = require('./node');
5
6class Comment extends Node {
7 constructor (opts) {
8 super(opts);
9 this.type = 'comment';
10 this.inline = Object(opts).inline || false;
11 }
12
13 toString () {
14 return [
15 this.raws.before,
16 this.inline ? '//' : '/*',
17 String(this.value),
18 this.inline ? '' : '*/',
19 this.raws.after
20 ].join('');
21 }
22};
23
24Container.registerWalker(Comment);
25
26module.exports = Comment;
Note: See TracBrowser for help on using the repository browser.