I am working with the FormData object, while my code works well on Chrome, Microsoft Edge spits out the following error message Object doesn\'t support property or met
Object doesn\'t support property or met
By importing
import 'core-js/es7/object';
if you are getting error
Module not found: Error: Can't resolve 'core-js/es7/object'
then Change all "es6" and "es7" to "es" in your imports.
import 'core-js/es/object';