whychdw
2019-09-09 c0b9ce437d409b89ca0e5388344ca9c5a56d70a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict';
 
Object.defineProperty(exports, "__esModule", {
  value: true
});
 
var _boostables = require('./boostables.js');
 
var _boostables2 = _interopRequireDefault(_boostables);
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 
// These are the series we allow boosting for.
 
var boostableMap = {}; /* *
                        *
                        *  Copyright (c) 2019-2019 Highsoft AS
                        *
                        *  Boost module: stripped-down renderer for higher performance
                        *
                        *  License: highcharts.com/license
                        *
                        * */
 
_boostables2.default.forEach(function (item) {
  boostableMap[item] = 1;
});
 
exports.default = boostableMap;