const file = new File(
blob,
'filename.png',
{
type: blob.type,
lastModified: new Date().getTime()
}
)
//you can change type when upload image to image/png,jpeg,jpg
const blob = new Blob([file],{type: 'audio/m4u'})
const file = new File(
[blob],
'filename.png',
{
type: blob.type,
lastModified: new Date().getTime()
}
)