source: trip-planner-front/node_modules/autoprefixer/lib/hacks/flex-shrink.js@ fa375fe

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

initial commit

  • Property mode set to 100644
File size: 2.0 KB
RevLine 
[6a3a178]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 flexSpec = require('./flex-spec');
10
11var Declaration = require('../declaration');
12
13var FlexShrink = /*#__PURE__*/function (_Declaration) {
14 _inheritsLoose(FlexShrink, _Declaration);
15
16 function FlexShrink() {
17 return _Declaration.apply(this, arguments) || this;
18 }
19
20 var _proto = FlexShrink.prototype;
21
22 /**
23 * Return property name by final spec
24 */
25 _proto.normalize = function normalize() {
26 return 'flex-shrink';
27 }
28 /**
29 * Return flex property for 2012 spec
30 */
31 ;
32
33 _proto.prefixed = function prefixed(prop, prefix) {
34 var spec;
35
36 var _flexSpec = flexSpec(prefix);
37
38 spec = _flexSpec[0];
39 prefix = _flexSpec[1];
40
41 if (spec === 2012) {
42 return prefix + 'flex-negative';
43 }
44
45 return _Declaration.prototype.prefixed.call(this, prop, prefix);
46 }
47 /**
48 * Ignore 2009 spec and use flex property for 2012
49 */
50 ;
51
52 _proto.set = function set(decl, prefix) {
53 var spec;
54
55 var _flexSpec2 = flexSpec(prefix);
56
57 spec = _flexSpec2[0];
58 prefix = _flexSpec2[1];
59
60 if (spec === 2012 || spec === 'final') {
61 return _Declaration.prototype.set.call(this, decl, prefix);
62 }
63
64 return undefined;
65 };
66
67 return FlexShrink;
68}(Declaration);
69
70_defineProperty(FlexShrink, "names", ['flex-shrink', 'flex-negative']);
71
72module.exports = FlexShrink;
Note: See TracBrowser for help on using the repository browser.