UNPKG

3.23 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8
9var _stringifier = require('postcss/lib/stringifier');
10
11var _stringifier2 = _interopRequireDefault(_stringifier);
12
13function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
15function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16
17function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
18
19function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
20
21var LessStringifier = function (_Stringifier) {
22 _inherits(LessStringifier, _Stringifier);
23
24 function LessStringifier() {
25 _classCallCheck(this, LessStringifier);
26
27 return _possibleConstructorReturn(this, (LessStringifier.__proto__ || Object.getPrototypeOf(LessStringifier)).apply(this, arguments));
28 }
29
30 _createClass(LessStringifier, [{
31 key: 'comment',
32 value: function comment(node) {
33 this.builder(node.raws.content, node);
34 }
35 }, {
36 key: 'block',
37 value: function block(node, start) {
38 var ruleWithoutBody = node.ruleWithoutBody;
39
40 var between = this.raw(node, 'between', 'beforeOpen');
41 var after = '';
42
43 if (ruleWithoutBody) {
44 this.builder(start + between, node, 'start');
45 } else {
46 this.builder(start + between + '{', node, 'start');
47 }
48
49 if (node.nodes && node.nodes.length) {
50 this.body(node);
51 after = this.raw(node, 'after');
52 } else {
53 after = this.raw(node, 'after', 'emptyBody');
54 }
55
56 if (after) {
57 this.builder(after);
58 }
59
60 if (!ruleWithoutBody) {
61 this.builder('}', node, 'end');
62 }
63 }
64 }]);
65
66 return LessStringifier;
67}(_stringifier2.default);
68
69exports.default = LessStringifier;
70module.exports = exports['default'];
\No newline at end of file