source: trip-planner-front/node_modules/autoprefixer/lib/hacks/background-size.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
1"use strict";
2
3function _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
5function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _defaults(subClass, superClass); }
6
7function _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
9var Declaration = require('../declaration');
10
11var BackgroundSize = /*#__PURE__*/function (_Declaration) {
12 _inheritsLoose(BackgroundSize, _Declaration);
13
14 function BackgroundSize() {
15 return _Declaration.apply(this, arguments) || this;
16 }
17
18 var _proto = BackgroundSize.prototype;
19
20 /**
21 * Duplication parameter for -webkit- browsers
22 */
23 _proto.set = function set(decl, prefix) {
24 var value = decl.value.toLowerCase();
25
26 if (prefix === '-webkit-' && !value.includes(' ') && value !== 'contain' && value !== 'cover') {
27 decl.value = decl.value + ' ' + decl.value;
28 }
29
30 return _Declaration.prototype.set.call(this, decl, prefix);
31 };
32
33 return BackgroundSize;
34}(Declaration);
35
36_defineProperty(BackgroundSize, "names", ['background-size']);
37
38module.exports = BackgroundSize;
Note: See TracBrowser for help on using the repository browser.