Use `MIME` module

This commit is contained in:
Daniel Gasienica 2018-02-13 08:35:05 -05:00
parent ba2cf7770e
commit 3eaace6f3a
1 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,6 @@
const dataURLToBlob = require('blueimp-canvas-to-blob'); const dataURLToBlob = require('blueimp-canvas-to-blob');
const MIME = require('./mime');
// // Fields // // Fields
// { // {
@ -14,9 +15,6 @@ const dataURLToBlob = require('blueimp-canvas-to-blob');
// data: ArrayBuffer // data: ArrayBuffer
// } // }
const isJPEG = mimeType =>
mimeType === 'image/jpeg' || mimeType === 'image/jpg';
// Data type conversion // Data type conversion
const blobToArrayBuffer = blob => const blobToArrayBuffer = blob =>
new Promise((resolve, reject) => { new Promise((resolve, reject) => {
@ -45,7 +43,7 @@ const withLastNormalizedDate = attachment => Object.assign(
); );
const autoOrientJPEGs = async (attachment) => { const autoOrientJPEGs = async (attachment) => {
if (!isJPEG(attachment.contentType)) { if (!MIME.isJPEG(attachment.contentType)) {
return attachment; return attachment;
} }