We use Object.assign in the following line -
|
let userDefinedOptions = Object.assign({}, cm.defaults, this.editor.options, props.options || {}); |
Unfortunately, Internet Explorer doesn't have a definition for the same. And its very difficult to override object.assign from an external module :(
Can we depend on an external library (like core-js) to get the definition for assign and use that instead?