You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Object.assign is not available on IE. The fix is simple as only a polyfill is necessary
if(typeofObject.assign!='function'){Object.assign=function(target){'use strict';if(target==null){thrownewTypeError('Cannot convert undefined or null to object');}target=Object(target);for(varindex=1;index<arguments.length;index++){varsource=arguments[index];if(source!=null){for(varkeyinsource){if(Object.prototype.hasOwnProperty.call(source,key)){target[key]=source[key];}}}}returntarget;};}
The text was updated successfully, but these errors were encountered:
@stanleynguyen nice one. Personally I don't think we should change the package to support IE. But I'd like to keep this issue open, and possible pinned, so that others can implement support for IE as necessary.
Object.assign is not available on IE. The fix is simple as only a polyfill is necessary
The text was updated successfully, but these errors were encountered: