-
Notifications
You must be signed in to change notification settings - Fork 152
Closed
Labels
Description
ie11 doesn't support File constructor OOB
I fixed this with next code found here jimmywarting/FormData#11 :
let File = window.File
try {
new File([], '')
} catch(e) {
File = class File extends Blob {
constructor(chunks, filename, opts = {}){
super(chunks, opts)
this.lastModifiedDate = new Date()
this.lastModified =+ this.lastModifiedDate
this.name = filename
}
}
}
alessiomaffeis