-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.js
More file actions
18 lines (18 loc) · 658 Bytes
/
types.js
File metadata and controls
18 lines (18 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* @copyright 2023 Chris Zuber <admin@kernvalley.us>
*/
export const TEXT = 'text/plain';
export const HTML = 'text/html';
export const CSS = 'text/css';
export const JS = 'application/javascript';
export const JSON = 'application/json';
export const XML = 'application/xml';
export const JSON_LD = 'application/ld+json';
export const JPEG = 'image/jpeg';
export const PNG = 'image/png';
export const GIF = 'image/gif';
export const WEBP = 'image/webp';
export const SVG = 'image/svg+xml';
export const MARKDOWN = 'text/markdown';
export const FORM_URL_ENCODED = 'application/x-www-form-urlencoded';
export const FORM_MULTIPART = 'multipart/form-data';