session-desktop/ts/types/MIME.ts
Daniel Gasienica 6ee56b8445 Remove newlines
2018-04-27 16:31:42 -04:00

9 lines
398 B
TypeScript

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