Blame view

node_modules/postcss-selector-parser/dist/processor.js 1.76 KB
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  'use strict';
  
  exports.__esModule = 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; }; }();
  
  var _parser = require('./parser');
  
  var _parser2 = _interopRequireDefault(_parser);
  
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  
  var Processor = function () {
      function Processor(func) {
          _classCallCheck(this, Processor);
  
          this.func = func || function noop() {};
          return this;
      }
  
      Processor.prototype.process = function process(selectors) {
          var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
  
          var input = new _parser2.default({
              css: selectors,
              error: function error(e) {
                  throw new Error(e);
              },
              options: options
          });
          this.res = input;
          this.func(input);
          return this;
      };
  
      _createClass(Processor, [{
          key: 'result',
          get: function get() {
              return String(this.res);
          }
      }]);
  
      return Processor;
  }();
  
  exports.default = Processor;
  module.exports = exports['default'];