|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 'use strict';
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var _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; }; }();
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- var SimpleRule = function () {
- function SimpleRule(key, value, options) {
- _classCallCheck(this, SimpleRule);
-
- this.type = 'simple';
- this.isProcessed = false;
-
- this.key = key;
- this.value = value;
- this.options = options;
- }
-
- /**
- * Generates a CSS string.
- */
- // eslint-disable-next-line no-unused-vars
-
-
- _createClass(SimpleRule, [{
- key: 'toString',
- value: function toString(options) {
- if (Array.isArray(this.value)) {
- var str = '';
- for (var index = 0; index < this.value.length; index++) {
- str += this.key + ' ' + this.value[index] + ';';
- if (this.value[index + 1]) str += '\n';
- }
- return str;
- }
-
- return this.key + ' ' + this.value + ';';
- }
- }]);
-
- return SimpleRule;
- }();
-
- exports['default'] = SimpleRule;
|