Object doesn't support property or method 'assign'
See original GitHub issueIE error thrown.
in this function
while (sources.length > 0) {
var source = sources.shift();
if (isObject(source)) {
for (var key in source) {
if (isObject(source[key])) {
target[key] = mergeDeep(target[key], source[key]);
} else {
Object.assign(target, defineProperty({}, key, source[key]));
}
}
}
}
return target;
}
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Getting Error: Object doesn't support property or method 'assign'
These error usually occurs when some html element id has the same id as some variable in the JavaScript function. After changing the...
Read more >Solved: Object doesn't support property or method 'assign'
Solved: Object doesn't support property or method 'assign'. Object.assign() method is not supported in IE, but there is a polyfill available
Read more >IE11 Object doesn't support property or method 'assign' #639
I'm having an issue with IE11 while using core-js@3 with Webpack. Getting Object doesn't support property or method 'assign' . Seems that Object ......
Read more >JS: Error "Object doesn't support property or method 'assign ...
On IE the map doesn't render and the following error appears in the console: "Object doesn't support property or method 'assign'".
Read more >FIX: "SCRIPT438: Object doesn't support property or method ...
Fixes an issue in which you receive an error message when you visit a .NET Framework 3.5-based ASP.NET webpage in Internet Explorer 10....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@riksnelders This code generated by webpack with target of ‘ES5’ for this part of code https://github.com/artemsky/vue-snotify/blob/master/src/util.js#L17
I’ll try to do something with that in next release (soon)
Try this pollyfill from MDN: