UNPKG
@abalmus/request
Version:
latest (1.2.2)
1.2.2
1.2.2-0
1.2.1
1.2.0
Core utils, fetch wrapper, querystring utils
github.com/abalmus/fetch-request
abalmus/fetch-request
@abalmus/request
/
src
/
request
/
constants.ts
19 lines
(17 loc)
•
305 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export
const
METHODS
= [
'GET'
,
'HEAD'
,
'PUT'
,
'POST'
,
'PATCH'
,
'DELETE'
,
'OPTIONS'
];
export
const
DEFAULT_OPTIONS
= {
'normalizeUrl'
:
true
,
'format'
:
'default'
,
'credentials'
:
'same-origin'
,
'headers'
: {
'X-Requested-With'
:
'XMLHttpRequest'
} };