Remove newlines

This commit is contained in:
Daniel Gasienica 2018-04-25 18:02:27 -04:00
parent b86f9c0be8
commit 6ee56b8445

View file

@ -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/');