|
- '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; }; }();
-
- var _toCss = require('../utils/toCss');
-
- var _toCss2 = _interopRequireDefault(_toCss);
-
- 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 FontFaceRule = function () {
- function FontFaceRule(key, style, options) {
- _classCallCheck(this, FontFaceRule);
-
- this.type = 'font-face';
- this.isProcessed = false;
-
- this.key = key;
- this.style = style;
- this.options = options;
- }
-
- /**
- * Generates a CSS string.
- */
-
-
- _createClass(FontFaceRule, [{
- key: 'toString',
- value: function toString(options) {
- if (Array.isArray(this.style)) {
- var str = '';
- for (var index = 0; index < this.style.length; index++) {
- str += (0, _toCss2['default'])(this.key, this.style[index]);
- if (this.style[index + 1]) str += '\n';
- }
- return str;
- }
-
- return (0, _toCss2['default'])(this.key, this.style, options);
- }
- }]);
-
- return FontFaceRule;
- }();
-
- exports['default'] = FontFaceRule;
|