12 lines
273 B
JavaScript
Raw Normal View History

2019-02-02 14:56:08 -05:00
const typeMap = {
'gif': 'image/gif',
'jpg': 'image/jpeg',
'png': 'image/png',
'pdf': 'application/pdf'
}
export const getImageType = file => {
2019-04-04 12:49:09 -04:00
const suffix = file.split('.').slice(-1)[0].toLowerCase()
2019-02-02 14:56:08 -05:00
return typeMap[suffix] ? typeMap[suffix] : 'image/jpeg'
}