[6a3a178] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; }
|
---|
| 4 |
|
---|
| 5 | function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); }
|
---|
| 6 |
|
---|
| 7 | function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
---|
| 8 |
|
---|
| 9 | var Declaration = require('../declaration');
|
---|
| 10 |
|
---|
| 11 | var TextEmphasisPosition = /*#__PURE__*/function (_Declaration) {
|
---|
| 12 | _inheritsLoose(TextEmphasisPosition, _Declaration);
|
---|
| 13 |
|
---|
| 14 | function TextEmphasisPosition() {
|
---|
| 15 | return _Declaration.apply(this, arguments) || this;
|
---|
| 16 | }
|
---|
| 17 |
|
---|
| 18 | var _proto = TextEmphasisPosition.prototype;
|
---|
| 19 |
|
---|
| 20 | _proto.set = function set(decl, prefix) {
|
---|
| 21 | if (prefix === '-webkit-') {
|
---|
| 22 | decl.value = decl.value.replace(/\s*(right|left)\s*/i, '');
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | return _Declaration.prototype.set.call(this, decl, prefix);
|
---|
| 26 | };
|
---|
| 27 |
|
---|
| 28 | return TextEmphasisPosition;
|
---|
| 29 | }(Declaration);
|
---|
| 30 |
|
---|
| 31 | _defineProperty(TextEmphasisPosition, "names", ['text-emphasis-position']);
|
---|
| 32 |
|
---|
| 33 | module.exports = TextEmphasisPosition; |
---|