2016-03-20 04:00:40 +00:00
|
|
|
// Global
|
2016-04-09 21:08:55 +00:00
|
|
|
export const LOCALSTORAGE_DEBOUNCE_MILLIS = 500;
|
2016-03-20 04:00:40 +00:00
|
|
|
export const LOCALSTORAGE_KEY = 'insomnia';
|
|
|
|
|
|
|
|
// HTTP Methods
|
|
|
|
export const METHOD_GET = 'GET';
|
|
|
|
export const METHOD_PUT = 'PUT';
|
|
|
|
export const METHOD_POST = 'POST';
|
2016-04-07 01:11:16 +00:00
|
|
|
export const METHOD_PATCH = 'PATCH';
|
2016-03-20 04:00:40 +00:00
|
|
|
export const METHOD_DELETE = 'DELETE';
|
|
|
|
export const METHOD_OPTIONS = 'OPTIONS';
|
|
|
|
export const METHOD_HEAD = 'HEAD';
|
2016-04-04 07:15:30 +00:00
|
|
|
|
2016-03-20 20:42:27 +00:00
|
|
|
export const METHODS = [
|
|
|
|
METHOD_GET,
|
|
|
|
METHOD_PUT,
|
2016-04-07 01:11:16 +00:00
|
|
|
METHOD_PATCH,
|
2016-03-20 20:42:27 +00:00
|
|
|
METHOD_POST,
|
|
|
|
METHOD_DELETE,
|
|
|
|
METHOD_OPTIONS,
|
|
|
|
METHOD_HEAD
|
|
|
|
];
|
2016-04-04 07:15:30 +00:00
|
|
|
|