mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-01-12 12:34:39 +00:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
const typeMap = {
|
|
'gif': 'image/gif',
|
|
'jpg': 'image/jpeg',
|
|
'png': 'image/png',
|
|
'pdf': 'application/pdf'
|
|
}
|
|
|
|
export const getImageType = file => {
|
|
const suffix = file.split('.').slice(-1)[0].toLowerCase()
|
|
return typeMap[suffix] ? typeMap[suffix] : 'image/jpeg'
|
|
}
|