source: frontend/node_modules/postcss-selector-parser/dist/selectors/comment.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 971 bytes
Line 
1"use strict";
2
3exports.__esModule = true;
4exports["default"] = void 0;
5var _node = _interopRequireDefault(require("./node"));
6var _types = require("./types");
7function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
8function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
9function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
10var Comment = /*#__PURE__*/function (_Node) {
11 _inheritsLoose(Comment, _Node);
12 function Comment(opts) {
13 var _this;
14 _this = _Node.call(this, opts) || this;
15 _this.type = _types.COMMENT;
16 return _this;
17 }
18 return Comment;
19}(_node["default"]);
20exports["default"] = Comment;
21module.exports = exports.default;
Note: See TracBrowser for help on using the repository browser.