There is actually a pretty easy workaround if you are uploading with FormData via Xhr. The FormData.append api allows for you to pass in the filename as the 3rd argument.
const formData = new FormData();
//explicitly setting the file name works in IE 11
formData.append('file', file, file.name);