TehShrike / deepmerge

A library for deep (recursive) merging of Javascript objects
MIT License
2.75k stars 216 forks source link

IE 11 regression #171

Closed oliviertassinari closed 4 years ago

oliviertassinari commented 4 years ago

IE 11 doesn't support Object.assign, #167 prevents IE 11 support outside of the box:

Capture d’écran 2019-10-21 à 14 18 57

It was first reported in https://github.com/mui-org/material-ui/issues/17908.

Reverting to v4.0.0 solves the problem.

basslagter commented 4 years ago

Yes, same issue here!

TehShrike commented 4 years ago

Whoops, forgot Object.assign was added in ES2015. I'll publish a patch.

TehShrike commented 4 years ago

Published as 4.1.2

oliviertassinari commented 4 years ago

@TehShrike Thank you! I appreciate the reactivity and the care ❤️