Blob para arquivar JavaScript
const file = new File(
blob,
'filename.png',
{
type: blob.type,
lastModified: new Date().getTime()
}
)
Suman Majhi