Utils.isAttachmentContentType = function()

in src/utils.js [184:193]


Utils.isAttachmentContentType = function(contentType){
  return contentType === CONTENT_TYPE.applicationPdf
      || contentType === CONTENT_TYPE.imageJpg
      || contentType === CONTENT_TYPE.imagePng
      || contentType === CONTENT_TYPE.applicationDoc
      || contentType === CONTENT_TYPE.applicationXls
      || contentType === CONTENT_TYPE.applicationPpt
      || contentType === CONTENT_TYPE.textCsv
      || contentType === CONTENT_TYPE.audioWav;
};