autoprefixer-rails 9.1.0 → 9.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/autoprefixer-rails/processor.rb +9 -1
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/vendor/autoprefixer.js +255 -19
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a0d200341307a0c015c0ff01b36c84c9e886951b9d3ea54fbb2dbf26015ca9a
|
4
|
+
data.tar.gz: 3b492e95296e5564e12f411c3627c6e562fe923770717ced396c5799ec26b084
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb556e07635034cbb1a3247b85e96020d4c2555e4fe88aeb97f2924093289e934cb2f5ea9af5c263dab595783cef9008521eda2cc57dba678302bf9732f64126
|
7
|
+
data.tar.gz: 0673bb57b19eee27625886b4058db5bed74e201e5223f449ffe895f48cc044cde83751c784039682061ecbc22a495dbb31f6293dda77f84aaa8a0798eecf5c0b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 9.1.1
|
4
|
+
* Retain `grid-gap` through `@media` (by Bogdan Dolin).
|
5
|
+
* Fix `grid-template` and `@media` (by Bogdan Dolin).
|
6
|
+
* Fix Grid areas searching error (by Bogdan Dolin).
|
7
|
+
* Fix `span X` Grid prefix (by Bogdan Dolin).
|
8
|
+
* Fix `log2` error.
|
9
|
+
|
3
10
|
## 9.1 “Equality before the law”
|
4
11
|
* Add `background-clip: text` support.
|
5
12
|
* Fix adding Grid span for IE (by Bogdan).
|
@@ -146,7 +146,7 @@ module AutoprefixerRails
|
|
146
146
|
def runtime
|
147
147
|
@runtime ||= begin
|
148
148
|
if ExecJS.eval('typeof Uint8Array') != 'function'
|
149
|
-
if ExecJS.runtime
|
149
|
+
if ExecJS.runtime == ExecJS::Runtimes::MiniRacer
|
150
150
|
raise "ExecJS::RubyRacerRuntime is not supported. " +
|
151
151
|
"Please replace therubyracer with mini_racer in your Gemfile."
|
152
152
|
else
|
@@ -155,6 +155,14 @@ module AutoprefixerRails
|
|
155
155
|
end
|
156
156
|
end
|
157
157
|
|
158
|
+
if ExecJS.runtime == ExecJS::Runtimes::Node
|
159
|
+
version = ExecJS.runtime.eval('process.version')
|
160
|
+
first = version.match(/^v(\d+)/)[1].to_i
|
161
|
+
if first < 6
|
162
|
+
raise "Autoprefixer doesn’t support Node #{ version }. Update it."
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
158
166
|
ExecJS.compile(build_js)
|
159
167
|
end
|
160
168
|
end
|
data/vendor/autoprefixer.js
CHANGED
@@ -4515,6 +4515,12 @@ var GridRowColumn = function (_Declaration) {
|
|
4515
4515
|
start = _utils$translate[0],
|
4516
4516
|
span = _utils$translate[1];
|
4517
4517
|
|
4518
|
+
var hasStartValueSpan = values[0] && values[0].includes('span');
|
4519
|
+
|
4520
|
+
if (hasStartValueSpan) {
|
4521
|
+
span = values[0].join('').replace(/\D/g, '');
|
4522
|
+
}
|
4523
|
+
|
4518
4524
|
[[decl.prop, start], [decl.prop + '-span', span]].forEach(function (_ref) {
|
4519
4525
|
var prop = _ref[0],
|
4520
4526
|
value = _ref[1];
|
@@ -4744,7 +4750,8 @@ var _require = require('./grid-utils'),
|
|
4744
4750
|
prefixTrackValue = _require.prefixTrackValue,
|
4745
4751
|
getGridGap = _require.getGridGap,
|
4746
4752
|
warnGridGap = _require.warnGridGap,
|
4747
|
-
warnDuplicateNames = _require.warnDuplicateNames
|
4753
|
+
warnDuplicateNames = _require.warnDuplicateNames,
|
4754
|
+
inheritGridGap = _require.inheritGridGap;
|
4748
4755
|
|
4749
4756
|
function getGridRows(tpl) {
|
4750
4757
|
return tpl.trim().slice(1, -1).split(/['"]\s*['"]?/g);
|
@@ -4769,6 +4776,7 @@ var GridTemplateAreas = function (_Declaration) {
|
|
4769
4776
|
var hasRows = false;
|
4770
4777
|
var parent = decl.parent;
|
4771
4778
|
var gap = getGridGap(decl);
|
4779
|
+
var inheritedGap = inheritGridGap(decl, gap);
|
4772
4780
|
|
4773
4781
|
// remove already prefixed rows and columns
|
4774
4782
|
// without gutter to prevent doubling prefixes
|
@@ -4783,19 +4791,43 @@ var GridTemplateAreas = function (_Declaration) {
|
|
4783
4791
|
var prop = trackDecl.prop,
|
4784
4792
|
value = trackDecl.value;
|
4785
4793
|
|
4786
|
-
|
4787
|
-
|
4788
|
-
|
4789
|
-
|
4794
|
+
/**
|
4795
|
+
* we must insert inherited gap values in some cases:
|
4796
|
+
* if we are inside media query && if we have no grid-gap value
|
4797
|
+
*/
|
4798
|
+
|
4799
|
+
if (inheritedGap) {
|
4800
|
+
trackDecl.cloneBefore({
|
4801
|
+
prop: prefixTrackProp({ prop: prop, prefix: prefix }),
|
4802
|
+
value: prefixTrackValue({ value: value, gap: inheritedGap.row })
|
4803
|
+
});
|
4804
|
+
} else {
|
4805
|
+
trackDecl.cloneBefore({
|
4806
|
+
prop: prefixTrackProp({ prop: prop, prefix: prefix }),
|
4807
|
+
value: prefixTrackValue({ value: value, gap: gap.row })
|
4808
|
+
});
|
4809
|
+
}
|
4790
4810
|
} else {
|
4791
4811
|
hasColumns = true;
|
4792
4812
|
var _prop = trackDecl.prop,
|
4793
4813
|
_value = trackDecl.value;
|
4794
4814
|
|
4795
|
-
|
4796
|
-
|
4797
|
-
|
4798
|
-
|
4815
|
+
/**
|
4816
|
+
* we must insert inherited gap values in some cases:
|
4817
|
+
* if we are inside media query && if we have no grid-gap value
|
4818
|
+
*/
|
4819
|
+
|
4820
|
+
if (inheritedGap) {
|
4821
|
+
trackDecl.cloneBefore({
|
4822
|
+
prop: prefixTrackProp({ prop: _prop, prefix: prefix }),
|
4823
|
+
value: prefixTrackValue({ value: _value, gap: inheritedGap.column })
|
4824
|
+
});
|
4825
|
+
} else {
|
4826
|
+
trackDecl.cloneBefore({
|
4827
|
+
prop: prefixTrackProp({ prop: _prop, prefix: prefix }),
|
4828
|
+
value: prefixTrackValue({ value: _value, gap: gap.column })
|
4829
|
+
});
|
4830
|
+
}
|
4799
4831
|
}
|
4800
4832
|
});
|
4801
4833
|
|
@@ -4882,7 +4914,8 @@ var _require = require('./grid-utils'),
|
|
4882
4914
|
insertAreas = _require.insertAreas,
|
4883
4915
|
getGridGap = _require.getGridGap,
|
4884
4916
|
warnGridGap = _require.warnGridGap,
|
4885
|
-
warnDuplicateNames = _require.warnDuplicateNames
|
4917
|
+
warnDuplicateNames = _require.warnDuplicateNames,
|
4918
|
+
inheritGridGap = _require.inheritGridGap;
|
4886
4919
|
|
4887
4920
|
var GridTemplate = function (_Declaration) {
|
4888
4921
|
_inherits(GridTemplate, _Declaration);
|
@@ -4907,9 +4940,15 @@ var GridTemplate = function (_Declaration) {
|
|
4907
4940
|
|
4908
4941
|
var gap = getGridGap(decl);
|
4909
4942
|
|
4943
|
+
/**
|
4944
|
+
* we must insert inherited gap values in some cases:
|
4945
|
+
* if we are inside media query && if we have no grid-gap value
|
4946
|
+
*/
|
4947
|
+
var inheritedGap = inheritGridGap(decl, gap);
|
4948
|
+
|
4910
4949
|
var _parseTemplate = parseTemplate({
|
4911
4950
|
decl: decl,
|
4912
|
-
gap: gap
|
4951
|
+
gap: inheritedGap || gap
|
4913
4952
|
}),
|
4914
4953
|
rows = _parseTemplate.rows,
|
4915
4954
|
columns = _parseTemplate.columns,
|
@@ -5389,9 +5428,16 @@ function shouldAddSpan(decl, area, areaName) {
|
|
5389
5428
|
node.walkDecls('grid-template', function (d) {
|
5390
5429
|
var template = parseTemplate({ decl: d, gap: getGridGap(d) });
|
5391
5430
|
var comparedArea = template.areas[areaName];
|
5431
|
+
|
5432
|
+
if (!comparedArea) {
|
5433
|
+
return true;
|
5434
|
+
}
|
5435
|
+
|
5392
5436
|
if (area.row.span !== comparedArea.row.span) {
|
5393
5437
|
overrideValues[0] = true;
|
5394
|
-
}
|
5438
|
+
}
|
5439
|
+
|
5440
|
+
if (area.column.span !== comparedArea.column.span) {
|
5395
5441
|
overrideValues[1] = true;
|
5396
5442
|
}
|
5397
5443
|
|
@@ -5404,6 +5450,39 @@ function shouldAddSpan(decl, area, areaName) {
|
|
5404
5450
|
return overrideValues;
|
5405
5451
|
}
|
5406
5452
|
|
5453
|
+
/**
|
5454
|
+
* search the next siblings and find the latest media with
|
5455
|
+
* the same selectors inside
|
5456
|
+
* @param {Rule | AtRule} rule
|
5457
|
+
* @param {Array<String>} selectors
|
5458
|
+
* @return {AtRule}
|
5459
|
+
*/
|
5460
|
+
function getLastNextSimilarMedia(rule, selectors) {
|
5461
|
+
if (!rule) {
|
5462
|
+
return false;
|
5463
|
+
} else if (rule.type !== 'atrule' && rule.name !== 'media') {
|
5464
|
+
return rule.prev();
|
5465
|
+
}
|
5466
|
+
|
5467
|
+
var selectorsToCompare = [];
|
5468
|
+
rule.walkRules(function (r) {
|
5469
|
+
return selectorsToCompare.push(r.selector);
|
5470
|
+
});
|
5471
|
+
|
5472
|
+
// check if every selector match
|
5473
|
+
var selectorsEqual = selectors.every(function (sel, index) {
|
5474
|
+
return sel === selectorsToCompare[index];
|
5475
|
+
});
|
5476
|
+
|
5477
|
+
if (selectorsEqual) {
|
5478
|
+
// to check the next rule
|
5479
|
+
return getLastNextSimilarMedia(rule.next(), selectors);
|
5480
|
+
} else {
|
5481
|
+
// or return the last similar media
|
5482
|
+
return rule.prev();
|
5483
|
+
}
|
5484
|
+
}
|
5485
|
+
|
5407
5486
|
function insertAreas(areas, decl, result) {
|
5408
5487
|
var missed = Object.keys(areas);
|
5409
5488
|
|
@@ -5448,11 +5527,22 @@ function insertAreas(areas, decl, result) {
|
|
5448
5527
|
|
5449
5528
|
if (next && next.type === 'atrule' && next.name === 'media' && next.params === parentMedia.params && next.first.type === 'rule' && next.first.selector && parentMedia.first.selector && /^-ms-/.test(next.first.first.prop)) return undefined;
|
5450
5529
|
|
5530
|
+
var selectors = rules.map(function (r) {
|
5531
|
+
return r.selector;
|
5532
|
+
});
|
5533
|
+
var lastSimilarMedia = getLastNextSimilarMedia(next, selectors);
|
5534
|
+
|
5451
5535
|
var areaParentMedia = getParentMedia(gridArea.parent);
|
5452
5536
|
var areaMedia = parentMedia.clone().removeAll().append(rules);
|
5537
|
+
|
5453
5538
|
if (areaParentMedia) {
|
5539
|
+
// insert after @media
|
5454
5540
|
areaParentMedia.after(areaMedia);
|
5541
|
+
} else if (lastSimilarMedia) {
|
5542
|
+
// insert after the closest @media with the same selectors
|
5543
|
+
lastSimilarMedia.after(areaMedia);
|
5455
5544
|
} else {
|
5545
|
+
// insert after every other Rule
|
5456
5546
|
gridArea.parent.after(areaMedia);
|
5457
5547
|
}
|
5458
5548
|
}
|
@@ -5507,6 +5597,95 @@ function getGridGap(decl) {
|
|
5507
5597
|
return gap;
|
5508
5598
|
}
|
5509
5599
|
|
5600
|
+
/**
|
5601
|
+
* parse media parameters (for example 'min-width: 500px')
|
5602
|
+
* @param {String} params parameter to parse
|
5603
|
+
* @return {}
|
5604
|
+
*/
|
5605
|
+
function parseMediaParams(params) {
|
5606
|
+
var parsed = parser(params);
|
5607
|
+
var prop = void 0;
|
5608
|
+
var value = void 0;
|
5609
|
+
|
5610
|
+
parsed.walk(function (node) {
|
5611
|
+
if (node.type === 'word' && /min|max/g.test(node.value)) {
|
5612
|
+
prop = node.value;
|
5613
|
+
} else if (node.value.includes('px')) {
|
5614
|
+
value = parseInt(node.value.replace(/\D/g, ''));
|
5615
|
+
}
|
5616
|
+
});
|
5617
|
+
|
5618
|
+
return [prop, value];
|
5619
|
+
}
|
5620
|
+
|
5621
|
+
/**
|
5622
|
+
* inherit grid gap values from the closest rule above
|
5623
|
+
* with the same selector
|
5624
|
+
* @param {Declaration} decl
|
5625
|
+
* @param {Object} gap gap values
|
5626
|
+
* @return {Object | Boolean} return gap values or false (if not found)
|
5627
|
+
*/
|
5628
|
+
function inheritGridGap(decl, gap) {
|
5629
|
+
var rule = decl.parent;
|
5630
|
+
var mediaRule = getParentMedia(rule);
|
5631
|
+
var root = rule.root();
|
5632
|
+
if (Object.keys(gap).length > 0 || !mediaRule) {
|
5633
|
+
return false;
|
5634
|
+
}
|
5635
|
+
|
5636
|
+
// e.g ['min-width']
|
5637
|
+
|
5638
|
+
var _parseMediaParams = parseMediaParams(mediaRule.params),
|
5639
|
+
prop = _parseMediaParams[0];
|
5640
|
+
|
5641
|
+
// find the closest rule with the same selector
|
5642
|
+
|
5643
|
+
|
5644
|
+
var closestRuleGap = void 0;
|
5645
|
+
root.walkRules(rule.selector, function (r) {
|
5646
|
+
var gridGap = void 0;
|
5647
|
+
|
5648
|
+
// abort if checking the same rule
|
5649
|
+
if (rule.toString() === r.toString()) {
|
5650
|
+
return false;
|
5651
|
+
}
|
5652
|
+
|
5653
|
+
// find grid-gap values
|
5654
|
+
r.walkDecls('grid-gap', function (d) {
|
5655
|
+
return gridGap = getGridGap(d);
|
5656
|
+
});
|
5657
|
+
|
5658
|
+
// skip rule without gaps
|
5659
|
+
if (!gridGap || Object.keys(gridGap).length === 0) {
|
5660
|
+
return true;
|
5661
|
+
}
|
5662
|
+
|
5663
|
+
var media = getParentMedia(r);
|
5664
|
+
|
5665
|
+
if (media) {
|
5666
|
+
// if we are inside media, we need to check that media props match
|
5667
|
+
// e.g ('min-width' === 'min-width')
|
5668
|
+
var propToCompare = parseMediaParams(media.params)[0];
|
5669
|
+
if (propToCompare === prop) {
|
5670
|
+
closestRuleGap = gridGap;
|
5671
|
+
return true;
|
5672
|
+
}
|
5673
|
+
} else {
|
5674
|
+
closestRuleGap = gridGap;
|
5675
|
+
return true;
|
5676
|
+
}
|
5677
|
+
|
5678
|
+
return undefined;
|
5679
|
+
});
|
5680
|
+
|
5681
|
+
// if we find the closest gap object
|
5682
|
+
if (closestRuleGap && Object.keys(closestRuleGap).length > 0) {
|
5683
|
+
return closestRuleGap;
|
5684
|
+
} else {
|
5685
|
+
return false;
|
5686
|
+
}
|
5687
|
+
}
|
5688
|
+
|
5510
5689
|
function warnGridGap(_ref10) {
|
5511
5690
|
var gap = _ref10.gap,
|
5512
5691
|
hasColumns = _ref10.hasColumns,
|
@@ -5531,7 +5710,8 @@ module.exports = {
|
|
5531
5710
|
prefixTrackValue: prefixTrackValue,
|
5532
5711
|
getGridGap: getGridGap,
|
5533
5712
|
warnGridGap: warnGridGap,
|
5534
|
-
warnDuplicateNames: warnDuplicateNames
|
5713
|
+
warnDuplicateNames: warnDuplicateNames,
|
5714
|
+
inheritGridGap: inheritGridGap
|
5535
5715
|
};
|
5536
5716
|
|
5537
5717
|
},{"postcss":603,"postcss-value-parser":586}],44:[function(require,module,exports){
|
@@ -10502,7 +10682,7 @@ var QUERIES = [{
|
|
10502
10682
|
select: function select(context) {
|
10503
10683
|
var now = Date.now();
|
10504
10684
|
var queries = Object.keys(jsEOL).filter(function (key) {
|
10505
|
-
return now < Date.parse(jsEOL[key].end);
|
10685
|
+
return now < Date.parse(jsEOL[key].end) && now > Date.parse(jsEOL[key].start);
|
10506
10686
|
}).map(function (key) {
|
10507
10687
|
return 'node ' + key.slice(1);
|
10508
10688
|
});
|
@@ -12315,7 +12495,7 @@ function numberIsNaN(obj) {
|
|
12315
12495
|
},{"base64-js":70,"ieee754":580}],76:[function(require,module,exports){
|
12316
12496
|
"use strict";
|
12317
12497
|
|
12318
|
-
module.exports = { A: { A: { H: 0.00895953, D: 0.0134393, G: 0.179191, E: 0.161271, A: 0.107514, B: 2.71026, FB: 0.009298 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "FB", "H", "D", "G", "E", "A", "B", "", "", ""], E: "IE", F: { FB: 962323200, H: 998870400, D: 1161129600, G: 1237420800, E: 1300060800, A: 1346716800, B: 1381968000 } }, B: { A: { C: 0.026214, p: 0.026214, x: 0.065535, J: 0.074273, L: 0.48059, N: 1.15342, I: 0 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "C", "p", "x", "J", "L", "N", "I", "", ""], E: "Edge", F: { C: 1438128000, p: 1447286400, x: 1470096000, J: 1491868800, L: 1508198400, N: 1525046400, I: null } }, C: { A: { "0": 0.017476, "1": 0.026214, "2": 0.039321, "3": 0.08738, "4": 0.056797, "5": 0.048059, "6": 0.148546, "8": 0.21845, "9": 0.013107, aB: 0.013107, CB: 0.004369, F: 0.004369, K: 0.004879, H: 0.020136, D: 0.005725, G: 0.008738, E: 0.00533, A: 0.004283, B: 0.004369, C: 0.004471, p: 0.004486, x: 0.00453, J: 0.013107, L: 0.004417, N: 0.004349, I: 0.004393, O: 0.004443, P: 0.004283, Q: 0.004369, R: 0.004393, S: 0.013107, T: 0.008786, U: 0.004369, V: 0.004393, W: 0.004393, X: 0.004418, Y: 0.004369, Z: 0.004369, b: 0.004471, c: 0.008738, d: 0.013107, e: 0.004369, f: 0.004369, g: 0.008738, h: 0.04369, i: 0.008738, j: 0.008738, k: 0.013107, l: 0.008738, m: 0.026214, n: 0.008738, o: 0.034952, M: 0.008738, q: 0.069904, r: 0.126701, s: 0.021845, t: 0.021845, u: 0.056797, v: 0.432531, w: 0.021845, y: 3.23743, AB: 0, YB: 0.008786, SB: 0.008738 }, B: "moz", C: ["", "", "", "aB", "CB", "YB", "SB", "F", "K", "H", "D", "G", "E", "A", "B", "C", "p", "x", "J", "L", "N", "I", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "M", "q", "r", "s", "t", "u", "v", "w", "1", "2", "3", "4", "5", "6", "y", "8", "9", "AB", ""], E: "Firefox", F: { "0": 1405987200, "1": 1497312000, "2": 1502150400, "3": 1506556800, "4": 1510617600, "5": 1516665600, "6": 1520985600, "8": 1529971200, "9": null, aB: 1161648000, CB: 1213660800, YB: 1246320000, SB: 1264032000, F: 1300752000, K: 1308614400, H: 1313452800, D: 1317081600, G: 1317081600, E: 1320710400, A: 1324339200, B: 1327968000, C: 1331596800, p: 1335225600, x: 1338854400, J: 1342483200, L: 1346112000, N: 1349740800, I: 1353628800, O: 1357603200, P: 1361232000, Q: 1364860800, R: 1368489600, S: 1372118400, T: 1375747200, U: 1379376000, V: 1386633600, W: 1391472000, X: 1395100800, Y: 1398729600, Z: 1402358400, b: 1409616000, c: 1413244800, d: 1417392000, e: 1421107200, f: 1424736000, g: 1428278400, h: 1431475200, i: 1435881600, j: 1439251200, k: 1442880000, l: 1446508800, m: 1450137600, n: 1453852800, o: 1457395200, M: 1461628800, q: 1465257600, r: 1470096000, s: 1474329600, t: 1479168000, u: 1485216000, v: 1488844800, w: 1492560000, y: 1525824000, AB: null } }, D: { A: { "0": 0.026214, "1": 0.074273, "2": 0.336413, "3": 0.104856, "4": 0.074273, "5": 0.113594, "6": 0.056797, "8": 0.100487, "9": 0.144177, F: 0.004706, K: 0.004879, H: 0.004879, D: 0.005591, G: 0.005591, E: 0.005591, A: 0.004534, B: 0.008738, C: 0.004283, p: 0.004879, x: 0.004706, J: 0.009154, L: 0.004393, N: 0.004393, I: 0.013107, O: 0.004418, P: 0.004393, Q: 0.004369, R: 0.017476, S: 0.008786, T: 0.026214, U: 0.013107, V: 0.008738, W: 0.004369, X: 0.008738, Y: 0.196605, Z: 0.017476, b: 0.008738, c: 0.013107, d: 0.021845, e: 0.026214, f: 0.017476, g: 0.017476, h: 0.030583, i: 0.013107, j: 0.017476, k: 0.017476, l: 0.026214, m: 0.061166, n: 0.008738, o: 0.017476, M: 0.017476, q: 0.030583, r: 0.039321, s: 0.712147, t: 0.026214, u: 0.04369, v: 0.048059, w: 0.026214, y: 0.08738, AB: 0.432531, MB: 0.227188, cB: 0.4369, GB: 9.00451, a: 15.4925, HB: 0.061166, IB: 0.030583, JB: 0, KB: 0 }, B: "webkit", C: ["F", "K", "H", "D", "G", "E", "A", "B", "C", "p", "x", "J", "L", "N", "I", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "M", "q", "r", "s", "t", "u", "v", "w", "1", "2", "3", "4", "5", "6", "y", "8", "9", "AB", "MB", "cB", "GB", "a", "HB", "IB", "JB", "KB"], E: "Chrome", F: { "0": 1384214400, "1": 1476230400, "2": 1480550400, "3": 1485302400, "4": 1489017600, "5": 1492560000, "6": 1496707200, "8": 1504569600, "9": 1508198400, F: 1264377600, K: 1274745600, H: 1283385600, D: 1287619200, G: 1291248000, E: 1296777600, A: 1299542400, B: 1303862400, C: 1307404800, p: 1312243200, x: 1316131200, J: 1316131200, L: 1319500800, N: 1323734400, I: 1328659200, O: 1332892800, P: 1337040000, Q: 1340668800, R: 1343692800, S: 1348531200, T: 1352246400, U: 1357862400, V: 1361404800, W: 1364428800, X: 1369094400, Y: 1374105600, Z: 1376956800, b: 1389657600, c: 1392940800, d: 1397001600, e: 1400544000, f: 1405468800, g: 1409011200, h: 1412640000, i: 1416268800, j: 1421798400, k: 1425513600, l: 1429401600, m: 1432080000, n: 1437523200, o: 1441152000, M: 1444780800, q: 1449014400, r: 1453248000, s: 1456963200, t: 1460592000, u: 1464134400, v: 1469059200, w: 1472601600, y: 1500940800, AB: 1512518400, MB: 1516752000, cB: 1520294400, GB: 1523923200, a: 1527552000, HB: 1532390400, IB: null, JB: null, KB: null } }, E: { A: { F: 0, K: 0.013107, H: 0.004349, D: 0.008738, G: 0.039321, E: 0.04369, A: 0.069904, B: 0.288354, C: 0.004369, LB: 0, DB: 0.008692, NB: 0.065535, OB: 0.013107, PB: 0.004283, QB: 0.135439, RB: 0.244664, z: 1.38497, TB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "LB", "DB", "F", "K", "NB", "H", "OB", "D", "PB", "G", "E", "QB", "A", "RB", "B", "z", "C", "TB", ""], E: "Safari", F: { LB: 1205798400, DB: 1226534400, F: 1244419200, K: 1275868800, NB: 1311120000, H: 1343174400, OB: 1382400000, D: 1382400000, PB: 1410998400, G: 1413417600, E: 1443657600, QB: 1458518400, A: 1474329600, RB: 1490572800, B: 1505779200, z: 1522281600, C: null, TB: null } }, F: { A: { "0": 0.008738, "7": 0.034952, E: 0.0082, B: 0.016581, C: 0.004369, J: 0.00685, L: 0.00685, N: 0.00685, I: 0.005014, O: 0.006015, P: 0.004879, Q: 0.006597, R: 0.006597, S: 0.013434, T: 0.006702, U: 0.006015, V: 0.005595, W: 0.004393, X: 0.004369, Y: 0.004879, Z: 0.004879, b: 0.005152, c: 0.005014, d: 0.009758, e: 0.004879, f: 0.026214, g: 0.004283, h: 0.004367, i: 0.004534, j: 0.004367, k: 0.004227, l: 0.004418, m: 0.008668, n: 0.004227, o: 0.004471, M: 0.004417, q: 0.008942, r: 0.004369, s: 0.008738, t: 0.004369, u: 0.004369, v: 0.026214, w: 0.843217, UB: 0.00685, VB: 0.008738, WB: 0.008392, XB: 0.004706, z: 0.006229, BB: 0.004879, ZB: 0.008786 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "E", "UB", "VB", "WB", "XB", "B", "z", "BB", "ZB", "C", "7", "J", "L", "N", "I", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "M", "q", "r", "s", "t", "u", "v", "w", "", "", ""], E: "Opera", F: { "0": 1438646400, "7": 1352073600, E: 1150761600, UB: 1223424000, VB: 1251763200, WB: 1267488000, XB: 1277942400, B: 1292457600, z: 1302566400, BB: 1309219200, ZB: 1323129600, C: 1323129600, J: 1372723200, L: 1377561600, N: 1381104000, I: 1386288000, O: 1390867200, P: 1393891200, Q: 1399334400, R: 1401753600, S: 1405987200, T: 1409616000, U: 1413331200, V: 1417132800, W: 1422316800, X: 1425945600, Y: 1430179200, Z: 1433808000, b: 1442448000, c: 1445904000, d: 1449100800, e: 1454371200, f: 1457308800, g: 1462320000, h: 1465344000, i: 1470096000, j: 1474329600, k: 1477267200, l: 1481587200, m: 1486425600, n: 1490054400, o: 1494374400, M: 1498003200, q: 1502236800, r: 1506470400, s: 1510099200, t: 1515024000, u: 1517961600, v: 1521676800, w: 1525910400 }, D: { "7": "o", E: "o", B: "o", C: "o", UB: "o", VB: "o", WB: "o", XB: "o", z: "o", BB: "o", ZB: "o" } }, G: { A: { G: 0.0116667, C: 0.0291667, DB: 0.000972222, bB: 0, EB: 0.00194444, dB: 0.0145833, eB: 0.00777778, fB: 0.0408333, gB: 0.06125, hB: 0.0466667, iB: 0.279028, jB: 0.30625, kB: 0.701945, lB: 1.57597, mB: 6.63542 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "DB", "bB", "EB", "dB", "eB", "fB", "G", "gB", "hB", "iB", "jB", "kB", "lB", "mB", "C", "", ""], E: "iOS Safari", F: { DB: 1270252800, bB: 1283904000, EB: 1299628800, dB: 1331078400, eB: 1359331200, fB: 1394409600, G: 1410912000, gB: 1413763200, hB: 1442361600, iB: 1458518400, jB: 1473724800, kB: 1490572800, lB: 1505779200, mB: 1522281600, C: null } }, H: { A: { nB: 2.42564 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "nB", "", "", ""], E: "Opera Mini", F: { nB: 1426464000 } }, I: { A: { CB: 0, F: 0, a: 0, oB: 0, pB: 0, qB: 0, rB: 0.0683595, EB: 0.156, sB: 0.578426, tB: 0.362831 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "oB", "pB", "qB", "CB", "F", "rB", "EB", "sB", "tB", "a", "", "", ""], E: "Android Browser", F: { oB: 1256515200, pB: 1274313600, qB: 1291593600, CB: 1298332800, F: 1318896000, rB: 1341792000, EB: 1374624000, sB: 1386547200, tB: 1401667200, a: 1494115200 } }, J: { A: { D: 0.0090096, A: 0.0360384 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "D", "A", "", "", ""], E: "Blackberry Browser", F: { D: 1325376000, A: 1359504000 } }, K: { A: { "7": 0, A: 0, B: 0, C: 0, M: 0.0111391, z: 0, BB: 0 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "z", "BB", "C", "7", "M", "", "", ""], E: "Opera Mobile", F: { "7": 1349740800, A: 1287100800, B: 1300752000, z: 1314835200, BB: 1318291200, C: 1330300800, M: 1474588800 }, D: { M: "webkit" } }, L: { A: { a: 31.6889 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "a", "", "", ""], E: "Chrome for Android", F: { a: 1527724800 } }, M: { A: { y: 0.16893 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "y", "", "", ""], E: "Firefox for Android", F: { y: 1525824000 } }, N: { A: { A: 0.0232279, B: 0.162595 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "", "", ""], E: "IE Mobile", F: { A: 1340150400, B: 1353456000 } }, O: { A: { uB: 7.53991 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "uB", "", "", ""], E: "UC Browser for Android", F: { uB: 1471392000 }, D: { uB: "webkit" } }, P: { A: { F: 0.830777, K: 0.166155, vB: 1.12155, wB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "F", "K", "vB", "wB", "", "", ""], E: "Samsung Internet", F: { F: 1461024000, K: 1481846400, vB: 1509408000, wB: 1528329600 } }, Q: { A: { xB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "xB", "", "", ""], E: "QQ Browser", F: { xB: 1483228800 } }, R: { A: { yB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "yB", "", "", ""], E: "Baidu Browser", F: { yB: 1491004800 } } };
|
12498
|
+
module.exports = { A: { A: { H: 0.00884489, D: 0.00884489, G: 0.176898, E: 0.145941, A: 0.0928713, B: 2.64462, FB: 0.009298 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "FB", "H", "D", "G", "E", "A", "B", "", "", ""], E: "IE", F: { FB: 962323200, H: 998870400, D: 1161129600, G: 1237420800, E: 1300060800, A: 1346716800, B: 1381968000 } }, B: { A: { C: 0.025902, p: 0.025902, x: 0.060438, J: 0.069072, L: 0.263337, N: 1.38144, I: 0 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "C", "p", "x", "J", "L", "N", "I", "", ""], E: "Edge", F: { C: 1438128000, p: 1447286400, x: 1470096000, J: 1491868800, L: 1508198400, N: 1525046400, I: null } }, C: { A: { "0": 0.017268, "1": 0.021585, "2": 0.038853, "3": 0.090657, "4": 0.047487, "5": 0.038853, "6": 0.082023, "8": 2.91398, "9": 0.094974, aB: 0.004317, CB: 0.004317, F: 0.008634, K: 0.004879, H: 0.020136, D: 0.005725, G: 0.004317, E: 0.00533, A: 0.004283, B: 0.004317, C: 0.004471, p: 0.004486, x: 0.00453, J: 0.004317, L: 0.004417, N: 0.004349, I: 0.004393, O: 0.004443, P: 0.004283, Q: 0.008634, R: 0.004393, S: 0.004317, T: 0.008786, U: 0.004317, V: 0.004317, W: 0.004393, X: 0.004418, Y: 0.004317, Z: 0.008634, b: 0.004471, c: 0.008634, d: 0.012951, e: 0.008634, f: 0.004317, g: 0.008634, h: 0.056121, i: 0.008634, j: 0.008634, k: 0.008634, l: 0.004317, m: 0.025902, n: 0.012951, o: 0.030219, M: 0.008634, q: 0.069072, r: 0.099291, s: 0.017268, t: 0.021585, u: 0.056121, v: 0.410115, w: 0.017268, y: 0.453285, AB: 0, YB: 0.008786, SB: 0.008634 }, B: "moz", C: ["", "", "", "aB", "CB", "YB", "SB", "F", "K", "H", "D", "G", "E", "A", "B", "C", "p", "x", "J", "L", "N", "I", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "M", "q", "r", "s", "t", "u", "v", "w", "1", "2", "3", "4", "5", "6", "y", "8", "9", "AB", ""], E: "Firefox", F: { "0": 1405987200, "1": 1497312000, "2": 1502150400, "3": 1506556800, "4": 1510617600, "5": 1516665600, "6": 1520985600, "8": 1529971200, "9": null, aB: 1161648000, CB: 1213660800, YB: 1246320000, SB: 1264032000, F: 1300752000, K: 1308614400, H: 1313452800, D: 1317081600, G: 1317081600, E: 1320710400, A: 1324339200, B: 1327968000, C: 1331596800, p: 1335225600, x: 1338854400, J: 1342483200, L: 1346112000, N: 1349740800, I: 1353628800, O: 1357603200, P: 1361232000, Q: 1364860800, R: 1368489600, S: 1372118400, T: 1375747200, U: 1379376000, V: 1386633600, W: 1391472000, X: 1395100800, Y: 1398729600, Z: 1402358400, b: 1409616000, c: 1413244800, d: 1417392000, e: 1421107200, f: 1424736000, g: 1428278400, h: 1431475200, i: 1435881600, j: 1439251200, k: 1442880000, l: 1446508800, m: 1450137600, n: 1453852800, o: 1457395200, M: 1461628800, q: 1465257600, r: 1470096000, s: 1474329600, t: 1479168000, u: 1485216000, v: 1488844800, w: 1492560000, y: 1525824000, AB: null } }, D: { A: { "0": 0.030219, "1": 0.064755, "2": 0.271971, "3": 0.094974, "4": 0.064755, "5": 0.107925, "6": 0.047487, "8": 0.082023, "9": 0.120876, F: 0.004706, K: 0.004879, H: 0.004879, D: 0.005591, G: 0.005591, E: 0.005591, A: 0.004534, B: 0.008634, C: 0.004283, p: 0.004879, x: 0.004706, J: 0.017268, L: 0.004393, N: 0.004393, I: 0.012951, O: 0.004418, P: 0.004393, Q: 0.004317, R: 0.021585, S: 0.008786, T: 0.012951, U: 0.008634, V: 0.008634, W: 0.004317, X: 0.004317, Y: 0.289239, Z: 0.012951, b: 0.012951, c: 0.012951, d: 0.021585, e: 0.012951, f: 0.021585, g: 0.017268, h: 0.030219, i: 0.017268, j: 0.017268, k: 0.090657, l: 0.012951, m: 0.051804, n: 0.012951, o: 0.017268, M: 0.017268, q: 0.030219, r: 0.038853, s: 0.69072, t: 0.021585, u: 0.038853, v: 0.021585, w: 0.021585, y: 0.08634, AB: 0.500772, MB: 0.17268, cB: 0.289239, GB: 0.530991, a: 23.4715, HB: 0.591429, IB: 0.04317, JB: 0.004317, KB: 0 }, B: "webkit", C: ["F", "K", "H", "D", "G", "E", "A", "B", "C", "p", "x", "J", "L", "N", "I", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "M", "q", "r", "s", "t", "u", "v", "w", "1", "2", "3", "4", "5", "6", "y", "8", "9", "AB", "MB", "cB", "GB", "a", "HB", "IB", "JB", "KB"], E: "Chrome", F: { "0": 1384214400, "1": 1476230400, "2": 1480550400, "3": 1485302400, "4": 1489017600, "5": 1492560000, "6": 1496707200, "8": 1504569600, "9": 1508198400, F: 1264377600, K: 1274745600, H: 1283385600, D: 1287619200, G: 1291248000, E: 1296777600, A: 1299542400, B: 1303862400, C: 1307404800, p: 1312243200, x: 1316131200, J: 1316131200, L: 1319500800, N: 1323734400, I: 1328659200, O: 1332892800, P: 1337040000, Q: 1340668800, R: 1343692800, S: 1348531200, T: 1352246400, U: 1357862400, V: 1361404800, W: 1364428800, X: 1369094400, Y: 1374105600, Z: 1376956800, b: 1389657600, c: 1392940800, d: 1397001600, e: 1400544000, f: 1405468800, g: 1409011200, h: 1412640000, i: 1416268800, j: 1421798400, k: 1425513600, l: 1429401600, m: 1432080000, n: 1437523200, o: 1441152000, M: 1444780800, q: 1449014400, r: 1453248000, s: 1456963200, t: 1460592000, u: 1464134400, v: 1469059200, w: 1472601600, y: 1500940800, AB: 1512518400, MB: 1516752000, cB: 1520294400, GB: 1523923200, a: 1527552000, HB: 1532390400, IB: null, JB: null, KB: null } }, E: { A: { F: 0, K: 0.008634, H: 0.004349, D: 0.004317, G: 0.038853, E: 0.034536, A: 0.064755, B: 0.220167, C: 0.012951, LB: 0, DB: 0.008692, NB: 0.025902, OB: 0.012951, PB: 0.004283, QB: 0.116559, RB: 0.21585, z: 1.37281, TB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "LB", "DB", "F", "K", "NB", "H", "OB", "D", "PB", "G", "E", "QB", "A", "RB", "B", "z", "C", "TB", ""], E: "Safari", F: { LB: 1205798400, DB: 1226534400, F: 1244419200, K: 1275868800, NB: 1311120000, H: 1343174400, OB: 1382400000, D: 1382400000, PB: 1410998400, G: 1413417600, E: 1443657600, QB: 1458518400, A: 1474329600, RB: 1490572800, B: 1505779200, z: 1522281600, C: null, TB: null } }, F: { A: { "0": 0.008634, "7": 0.038853, E: 0.0082, B: 0.016581, C: 0.004317, J: 0.00685, L: 0.00685, N: 0.00685, I: 0.005014, O: 0.006015, P: 0.004879, Q: 0.006597, R: 0.006597, S: 0.013434, T: 0.006702, U: 0.006015, V: 0.005595, W: 0.004393, X: 0.008634, Y: 0.004879, Z: 0.004879, b: 0.005152, c: 0.005014, d: 0.009758, e: 0.004879, f: 0.025902, g: 0.004283, h: 0.004367, i: 0.004534, j: 0.004367, k: 0.004227, l: 0.004418, m: 0.004317, n: 0.004227, o: 0.004471, M: 0.004417, q: 0.008942, r: 0.004369, s: 0.004317, t: 0.004369, u: 0.004317, v: 0.008634, w: 0.246069, UB: 0.00685, VB: 0, WB: 0.008392, XB: 0.004706, z: 0.006229, BB: 0.004879, ZB: 0.008786 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "E", "UB", "VB", "WB", "XB", "B", "z", "BB", "ZB", "C", "7", "J", "L", "N", "I", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "M", "q", "r", "s", "t", "u", "v", "w", "", "", ""], E: "Opera", F: { "0": 1438646400, "7": 1352073600, E: 1150761600, UB: 1223424000, VB: 1251763200, WB: 1267488000, XB: 1277942400, B: 1292457600, z: 1302566400, BB: 1309219200, ZB: 1323129600, C: 1323129600, J: 1372723200, L: 1377561600, N: 1381104000, I: 1386288000, O: 1390867200, P: 1393891200, Q: 1399334400, R: 1401753600, S: 1405987200, T: 1409616000, U: 1413331200, V: 1417132800, W: 1422316800, X: 1425945600, Y: 1430179200, Z: 1433808000, b: 1442448000, c: 1445904000, d: 1449100800, e: 1454371200, f: 1457308800, g: 1462320000, h: 1465344000, i: 1470096000, j: 1474329600, k: 1477267200, l: 1481587200, m: 1486425600, n: 1490054400, o: 1494374400, M: 1498003200, q: 1502236800, r: 1506470400, s: 1510099200, t: 1515024000, u: 1517961600, v: 1521676800, w: 1525910400 }, D: { "7": "o", E: "o", B: "o", C: "o", UB: "o", VB: "o", WB: "o", XB: "o", z: "o", BB: "o", ZB: "o" } }, G: { A: { G: 0.00805035, C: 0.0674217, DB: 0.00100629, bB: 0, EB: 0.00301888, dB: 0.0181133, eB: 0.00805035, fB: 0.0533336, gB: 0.0764783, hB: 0.0402517, iB: 0.302894, jB: 0.326039, kB: 0.605789, lB: 1.29812, mB: 7.25034 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "DB", "bB", "EB", "dB", "eB", "fB", "G", "gB", "hB", "iB", "jB", "kB", "lB", "mB", "C", "", ""], E: "iOS Safari", F: { DB: 1270252800, bB: 1283904000, EB: 1299628800, dB: 1331078400, eB: 1359331200, fB: 1394409600, G: 1410912000, gB: 1413763200, hB: 1442361600, iB: 1458518400, jB: 1473724800, kB: 1490572800, lB: 1505779200, mB: 1522281600, C: null } }, H: { A: { nB: 2.29201 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "nB", "", "", ""], E: "Opera Mini", F: { nB: 1426464000 } }, I: { A: { CB: 0, F: 0, a: 0, oB: 0, pB: 0, qB: 0, rB: 0, EB: 0.15472, sB: 0.576334, tB: 0.377131 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "oB", "pB", "qB", "CB", "F", "rB", "EB", "sB", "tB", "a", "", "", ""], E: "Android Browser", F: { oB: 1256515200, pB: 1274313600, qB: 1291593600, CB: 1298332800, F: 1318896000, rB: 1341792000, EB: 1374624000, sB: 1386547200, tB: 1401667200, a: 1494115200 } }, J: { A: { D: 0.0079562, A: 0.0318248 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "D", "A", "", "", ""], E: "Blackberry Browser", F: { D: 1325376000, A: 1359504000 } }, K: { A: { "7": 0, A: 0, B: 0, C: 0, M: 0.0111391, z: 0, BB: 0 }, B: "o", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "z", "BB", "C", "7", "M", "", "", ""], E: "Opera Mobile", F: { "7": 1349740800, A: 1287100800, B: 1300752000, z: 1314835200, BB: 1318291200, C: 1330300800, M: 1474588800 }, D: { M: "webkit" } }, L: { A: { a: 32.6509 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "a", "", "", ""], E: "Chrome for Android", F: { a: 1527724800 } }, M: { A: { y: 0.176173 }, B: "moz", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "y", "", "", ""], E: "Firefox for Android", F: { y: 1525824000 } }, N: { A: { A: 0.0234897, B: 0.152683 }, B: "ms", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "A", "B", "", "", ""], E: "IE Mobile", F: { A: 1340150400, B: 1353456000 } }, O: { A: { uB: 7.09807 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "uB", "", "", ""], E: "UC Browser for Android", F: { uB: 1471392000 }, D: { uB: "webkit" } }, P: { A: { F: 0.828383, K: 0.155322, vB: 0.320998, wB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "F", "K", "vB", "wB", "", "", ""], E: "Samsung Internet", F: { F: 1461024000, K: 1481846400, vB: 1509408000, wB: 1528329600 } }, Q: { A: { xB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "xB", "", "", ""], E: "QQ Browser", F: { xB: 1483228800 } }, R: { A: { yB: 0 }, B: "webkit", C: ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "yB", "", "", ""], E: "Baidu Browser", F: { yB: 1491004800 } } };
|
12319
12499
|
|
12320
12500
|
},{}],77:[function(require,module,exports){
|
12321
12501
|
"use strict";
|
@@ -13930,7 +14110,7 @@ module.exports = { A: { A: { "2": "H D G E A B FB" }, B: { "2": "C p x J L N I"
|
|
13930
14110
|
},{}],399:[function(require,module,exports){
|
13931
14111
|
"use strict";
|
13932
14112
|
|
13933
|
-
module.exports = { A: { A: { "2": "H D G E A FB", "260": "B" }, B: { "1": "C p x J L N I" }, C: { "1": "1 2 3 4 5 6 8 9 l m n o M q r s t u v w y AB", "2": "aB CB F K H D G E A B C p x J L N I O P Q R S T YB SB", "194": "0 U V W X Y Z b c d e f g h i j k" }, D: { "1": "0 1 2 3 4 5 6 8 9 b c d e f g h i j k l m n o M q r s t u v w y AB MB cB GB a HB IB JB KB", "2": "F K H D G E A B C p x J L", "33": "S T U V W X Y Z", "66": "N I O P Q R" }, E: { "1": "G E A B C QB RB z TB", "2": "F K H D LB DB NB OB PB" }, F: { "1": "0 J L N I O P Q R S T U V W X Y Z b c d e f g h i j k l m n o M q r s t u v w", "2": "7 E B C UB VB WB XB z BB ZB" }, G: { "2": "G C DB bB EB dB eB fB gB hB iB jB kB lB mB" }, H: { "2": "nB" }, I: { "1": "a tB", "2": "CB F oB pB qB rB EB sB" }, J: { "2": "D A" }, K: { "1": "M", "2": "7 A B C z BB" }, L: { "1": "a" }, M: { "1": "y" }, N: { "1": "B", "2": "A" }, O: { "1": "uB" }, P: { "
|
14113
|
+
module.exports = { A: { A: { "2": "H D G E A FB", "260": "B" }, B: { "1": "C p x J L N I" }, C: { "1": "1 2 3 4 5 6 8 9 l m n o M q r s t u v w y AB", "2": "aB CB F K H D G E A B C p x J L N I O P Q R S T YB SB", "194": "0 U V W X Y Z b c d e f g h i j k" }, D: { "1": "0 1 2 3 4 5 6 8 9 b c d e f g h i j k l m n o M q r s t u v w y AB MB cB GB a HB IB JB KB", "2": "F K H D G E A B C p x J L", "33": "S T U V W X Y Z", "66": "N I O P Q R" }, E: { "1": "G E A B C QB RB z TB", "2": "F K H D LB DB NB OB PB" }, F: { "1": "0 J L N I O P Q R S T U V W X Y Z b c d e f g h i j k l m n o M q r s t u v w", "2": "7 E B C UB VB WB XB z BB ZB" }, G: { "2": "G C DB bB EB dB eB fB gB hB iB jB kB lB mB" }, H: { "2": "nB" }, I: { "1": "a tB", "2": "CB F oB pB qB rB EB sB" }, J: { "2": "D A" }, K: { "1": "M", "2": "7 A B C z BB" }, L: { "1": "a" }, M: { "1": "y" }, N: { "1": "B", "2": "A" }, O: { "1": "uB" }, P: { "514": "F K vB wB" }, Q: { "2": "xB" }, R: { "1": "yB" } }, B: 4, C: "Media Source Extensions" };
|
13934
14114
|
|
13935
14115
|
},{}],400:[function(require,module,exports){
|
13936
14116
|
"use strict";
|
@@ -14350,7 +14530,7 @@ module.exports = { A: { A: { "2": "H D G E A B FB" }, B: { "2": "C p x J L N I"
|
|
14350
14530
|
},{}],483:[function(require,module,exports){
|
14351
14531
|
"use strict";
|
14352
14532
|
|
14353
|
-
module.exports = { A: { A: { "2": "H D G E A B FB" }, B: { "2": "C p x J", "194": "L N I" }, C: { "2": "0 1 2 3 aB CB F K H D G E A B C p x J L N I O P Q R S T U V W X Y Z b c d e f g h i j k l m n o M q r s t u v w YB SB", "194": "4 5 6 8 9 y AB" }, D: { "2": "0 1 2 3 4 5 6 F K H D G E A B C p x J L N I O P Q R S T U V W X Y Z b c d e f g h i j k l m n o M q r s t u v w", "194": "8 9 y AB MB cB GB a
|
14533
|
+
module.exports = { A: { A: { "2": "H D G E A B FB" }, B: { "2": "C p x J", "194": "L N I" }, C: { "2": "0 1 2 3 aB CB F K H D G E A B C p x J L N I O P Q R S T U V W X Y Z b c d e f g h i j k l m n o M q r s t u v w YB SB", "194": "4 5 6 8 9 y AB" }, D: { "1": "HB IB JB KB", "2": "0 1 2 3 4 5 6 F K H D G E A B C p x J L N I O P Q R S T U V W X Y Z b c d e f g h i j k l m n o M q r s t u v w", "194": "8 9 y AB MB cB GB a" }, E: { "2": "F K H D G E A LB DB NB OB PB QB", "194": "B C RB z TB" }, F: { "2": "0 7 E B C J L N I O P Q R S T U V W X Y Z b c d e f g h i j k l m n o M UB VB WB XB z BB ZB", "194": "q r s t u v w" }, G: { "2": "G DB bB EB dB eB fB gB hB iB jB", "194": "C kB lB mB" }, H: { "2": "nB" }, I: { "2": "CB F oB pB qB rB EB sB tB", "16": "a" }, J: { "2": "D A" }, K: { "2": "7 A B C M z BB" }, L: { "194": "a" }, M: { "194": "y" }, N: { "2": "A B" }, O: { "1": "uB" }, P: { "2": "F K vB wB" }, Q: { "2": "xB" }, R: { "2": "yB" } }, B: 6, C: "Shared Array Buffer" };
|
14354
14534
|
|
14355
14535
|
},{}],484:[function(require,module,exports){
|
14356
14536
|
"use strict";
|
@@ -14907,6 +15087,8 @@ function _interopRequireDefault(obj) {
|
|
14907
15087
|
return obj && obj.__esModule ? obj : { default: obj };
|
14908
15088
|
}
|
14909
15089
|
|
15090
|
+
var MATH2LOG = Math.log(2);
|
15091
|
+
|
14910
15092
|
function unpackSupport(cipher) {
|
14911
15093
|
// bit flags
|
14912
15094
|
var stats = Object.keys(_supported2.default).reduce(function (list, support) {
|
@@ -14918,7 +15100,7 @@ function unpackSupport(cipher) {
|
|
14918
15100
|
var notes = cipher >> 7;
|
14919
15101
|
var notesArray = [];
|
14920
15102
|
while (notes) {
|
14921
|
-
var note = Math.floor(Math.
|
15103
|
+
var note = Math.floor(Math.log(notes) / MATH2LOG) + 1;
|
14922
15104
|
notesArray.unshift('#' + note);
|
14923
15105
|
notes -= Math.pow(2, note - 1);
|
14924
15106
|
}
|
@@ -15036,6 +15218,7 @@ function unpackRegion(packed) {
|
|
15036
15218
|
|
15037
15219
|
module.exports = {
|
15038
15220
|
"3.0": "66",
|
15221
|
+
"2.1": "61",
|
15039
15222
|
"2.0": "61",
|
15040
15223
|
"1.8": "59",
|
15041
15224
|
"1.7": "58",
|
@@ -15745,6 +15928,54 @@ module.exports=[
|
|
15745
15928
|
"version": "10.0.0",
|
15746
15929
|
"date": "2018-04-24",
|
15747
15930
|
"lts": false
|
15931
|
+
},
|
15932
|
+
{
|
15933
|
+
"name": "nodejs",
|
15934
|
+
"version": "10.1.0",
|
15935
|
+
"date": "2018-05-08",
|
15936
|
+
"lts": false
|
15937
|
+
},
|
15938
|
+
{
|
15939
|
+
"name": "nodejs",
|
15940
|
+
"version": "10.2.0",
|
15941
|
+
"date": "2018-05-23",
|
15942
|
+
"lts": false
|
15943
|
+
},
|
15944
|
+
{
|
15945
|
+
"name": "nodejs",
|
15946
|
+
"version": "10.3.0",
|
15947
|
+
"date": "2018-05-29",
|
15948
|
+
"lts": false
|
15949
|
+
},
|
15950
|
+
{
|
15951
|
+
"name": "nodejs",
|
15952
|
+
"version": "10.4.0",
|
15953
|
+
"date": "2018-06-06",
|
15954
|
+
"lts": false
|
15955
|
+
},
|
15956
|
+
{
|
15957
|
+
"name": "nodejs",
|
15958
|
+
"version": "10.5.0",
|
15959
|
+
"date": "2018-06-20",
|
15960
|
+
"lts": false
|
15961
|
+
},
|
15962
|
+
{
|
15963
|
+
"name": "nodejs",
|
15964
|
+
"version": "10.6.0",
|
15965
|
+
"date": "2018-07-04",
|
15966
|
+
"lts": false
|
15967
|
+
},
|
15968
|
+
{
|
15969
|
+
"name": "nodejs",
|
15970
|
+
"version": "10.7.0",
|
15971
|
+
"date": "2018-07-18",
|
15972
|
+
"lts": false
|
15973
|
+
},
|
15974
|
+
{
|
15975
|
+
"name": "nodejs",
|
15976
|
+
"version": "10.8.0",
|
15977
|
+
"date": "2018-08-01",
|
15978
|
+
"lts": false
|
15748
15979
|
}
|
15749
15980
|
]
|
15750
15981
|
},{}],582:[function(require,module,exports){
|
@@ -15794,11 +16025,16 @@ module.exports={
|
|
15794
16025
|
"end": "2018-06-30"
|
15795
16026
|
},
|
15796
16027
|
"v10": {
|
15797
|
-
"start": "2018-04-
|
16028
|
+
"start": "2018-04-24",
|
15798
16029
|
"lts": "2018-10-01",
|
15799
16030
|
"maintenance": "2020-04-01",
|
15800
16031
|
"end": "2021-04-01",
|
15801
16032
|
"codename": ""
|
16033
|
+
},
|
16034
|
+
"v11": {
|
16035
|
+
"start": "2018-10-23",
|
16036
|
+
"maintenance": "2019-04-01",
|
16037
|
+
"end": "2019-06-30"
|
15802
16038
|
}
|
15803
16039
|
}
|
15804
16040
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoprefixer-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.1.
|
4
|
+
version: 9.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrey Sitnik
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: execjs
|