I need to convert a blob to file i javascript.
Im using File API
var blob = new Blob(byteArrays, { type: contentType });
This is r
in Edge and Safari, just use blob structure:
var blob = new Blob(byteArrays, { type: contentType }); blob.lastModifiedDate = new Date(); blob.name = name;