onurzorluer / react-image-file-resizer

Resize Local Images with React 🌄 🌅
MIT License
317 stars 41 forks source link

Blob type file don't have name attribute? #38

Closed nhaphan closed 3 years ago

nhaphan commented 3 years ago

When I create an image in blob type. I not contain uid, name, lastModified, lastModifiedDate

OverStruck commented 3 years ago

This is because the JavaScript Blob object doesn't support the name attribute. If you are trying to use the Blob as a File I've added a pull request to get a File object which does have a name attribute.