From 6ee56b8445b24df667636db866b868d986ae4663 Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Wed, 25 Apr 2018 18:02:27 -0400 Subject: [PATCH] Remove newlines --- ts/types/MIME.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/ts/types/MIME.ts b/ts/types/MIME.ts index a27cb658c..7439a8a66 100644 --- a/ts/types/MIME.ts +++ b/ts/types/MIME.ts @@ -4,9 +4,6 @@ export type MIMEType = string & { _mimeTypeBrand: any }; export const isJPEG = (value: MIMEType): boolean => value === 'image/jpeg'; - export const isImage = (value: MIMEType): boolean => value.startsWith('image/'); - export const isVideo = (value: MIMEType): boolean => value.startsWith('video/'); - export const isAudio = (value: MIMEType): boolean => value.startsWith('audio/');