Babel @kurkle/color for IE support (#7099)

Babel @kurkle/color for IE support
This commit is contained in:
Jukka Kurkela
2020-02-14 19:29:33 +02:00
committed by GitHub
parent a476c3247c
commit 7c1fb37c61
25 changed files with 126 additions and 140 deletions

View File

@@ -1,7 +1,6 @@
import DatasetController from '../core/core.datasetController';
import defaults from '../core/core.defaults';
import Point from '../elements/element.point';
import {extend} from '../helpers/helpers.core';
import {resolve} from '../helpers/helpers.options';
defaults.set('bubble', {
@@ -152,7 +151,7 @@ class BubbleController extends DatasetController {
// In case values were cached (and thus frozen), we need to clone the values
if (values.$shared) {
values = extend({}, values, {$shared: false});
values = Object.assign({}, values, {$shared: false});
}