Port MIME
module to TypeScript
This commit is contained in:
parent
6a63e427c8
commit
df2e6e7864
7 changed files with 25 additions and 24 deletions
|
@ -1 +1,14 @@
|
|||
export type MIMEType = string & { _mimeTypeBrand: any };
|
||||
|
||||
|
||||
export const isVideo = (value: MIMEType): boolean =>
|
||||
value.startsWith('video/') && value !== 'video/wmv';
|
||||
|
||||
export const isImage = (value: MIMEType): boolean =>
|
||||
value.startsWith('image/') && value !== 'image/tiff';
|
||||
|
||||
export const isAudio = (value: MIMEType): boolean =>
|
||||
value.startsWith('audio/');
|
||||
|
||||
export const isJPEG = (value: MIMEType): boolean =>
|
||||
value === 'image/jpeg';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue